Skip to content

Instantly share code, notes, and snippets.

@Verssae
Created February 28, 2023 02:51
Show Gist options
  • Save Verssae/6b4491f0ae39fd19c424fc9879543b3d to your computer and use it in GitHub Desktop.
Save Verssae/6b4491f0ae39fd19c424fc9879543b3d to your computer and use it in GitHub Desktop.
eye test clicker
// https://game.ioxapp.com/eye-test/
let box = document.getElementById("box")
let start = Date.now()
while (Date.now() - start < 60000) {
let children = box.children
for (let i = 0; i < children.length; i++) {
children[i].click()
}
await new Promise(resolve => setTimeout(resolve, 500))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment