Skip to content

Instantly share code, notes, and snippets.

@Hacking-NASSA-with-HTML
Created December 29, 2022 16:36
Show Gist options
  • Save Hacking-NASSA-with-HTML/b18f936321b7923d9f2ef35d06e5a459 to your computer and use it in GitHub Desktop.
Save Hacking-NASSA-with-HTML/b18f936321b7923d9f2ef35d06e5a459 to your computer and use it in GitHub Desktop.
Robot click script
(() => {
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