Created
December 29, 2022 16:36
-
-
Save Hacking-NASSA-with-HTML/b18f936321b7923d9f2ef35d06e5a459 to your computer and use it in GitHub Desktop.
Robot click script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
let delay = 0 | |
const jobs = document.querySelectorAll(".your-classes") | |
jobs.forEach(job => { | |
setTimeout(() => { | |
job.click() | |
}, delay) | |
delay += 2000 | |
}) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment