Untitled
Anonymous
plain_text
01/11/2024 8:47 PM
616 B
16
Indexable
// butona tıklama fonksiyonu
function otomatikTikla() {
var buton = document.querySelector("#rallyPointFarmList > div.villageWrapper > div.dropContainer > div > div.farmListHeader > button > div");
if (buton) {
buton.click();
console.log(' butona tıklandı!');
} else {
console.log(' buton bulunamadı!');
}
}
// 3 dakikada bir belirtilen butona tıklama
setInterval(otomatikTikla, 3 * 60 * 1000); // Her 3 dakikada bir
Editor is loading...
Leave a Comment