Discussions » Creation Requests
Search and click button every interval.
setInterval(function() {
let t = document.querySelector('button[data-option="soulfight"]');
t && t.click();
}, 610 * 1e3);
/ConfirmeIf/ setInterval(function(){ if (document.querySelector('your selector') !=null) {document.querySelector("your selector").click()} }, 610000);
If you don't know how get the selector. right click in your element►Inspecter then right clique in the element. you will find copy SELECTOR
Search and click button every interval.
Hello, I need a script that will be clicking button every 610 seconds.
Button html code:
<button class="gold_button option" data-option="soulfight">Walka</button>
Script should look for data-attribute, not class name.