Untitled

mail@pastecode.io avatar
unknown
plain_text
21 days ago
509 B
12
Indexable
Never
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ı.");
    }
}


tıklamayıGerçekleştir();


setInterval(tıklamayıGerçekleştir, 3 * 60 * 1000 + 20 * 1000); // 3 dakika 20 saniye (3 * 60 * 1000 + 20 * 1000 milisaniye)
Leave a Comment