Created
February 28, 2023 02:51
-
-
Save Verssae/6b4491f0ae39fd19c424fc9879543b3d to your computer and use it in GitHub Desktop.
eye test clicker
This file contains hidden or 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
// 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