Untitled
unknown
plain_text
a year ago
573 B
7
Indexable
function tıklamayıGerçekleştir() {
var buttonElement = document.querySelector("#stickyWrapper > button.textButtonV2.buttonFramed.startAllFarmLists.rectangle.withText.green");
if (buttonElement) {
buttonElement.click();
console.log("Butona tıklandı.");
} else {
console.error("Buton bulunamadı.");
}
}
// İlk tıklama
tıklamayıGerçekleştir();
// Her 3 dakika 20 saniyede bir tıklama işlemi
setInterval(tıklamayıGerçekleştir, 3 * 60 * 1000 + 20 * 1000); // 3 dakika 20 saniye (3 * 60 * 1000 + 20 * 1000 milisaniye)
Editor is loading...
Leave a Comment