Sleazy Fork is available in English.

Discussions » Demandes de création de scripts

Search and click button every interval.

§
Posté le: 2018-07-26
Édité le: 2018-07-26

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.

§
Posté le: 2018-11-06
setInterval(function() {
    let t = document.querySelector('button[data-option="soulfight"]');
    t && t.click();
}, 610 * 1e3);
§
Posté le: 2018-11-21

/ConfirmeIf/ setInterval(function(){ if (document.querySelector('your selector') !=null) {document.querySelector("your selector").click()} }, 610000);

§
Posté le: 2018-11-21

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

§
Posté le: 2018-11-21

Poster une réponse

Connectez-vous pour poster une réponse.