Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. const waitFor = (ms) => new Promise(r => setTimeout(r, ms));
  2.  
  3. const hi = async () => {while(true) {this.document.querySelectorAll("#checkmark")[1].click();await waitFor(200);}}
  4. [03:27:57] (Channel)
  5.  
  6. hi()
  7.  
  8. const hi = async () => {while(true) { for (var i = 1; i < 5; i++) { this.document.querySelectorAll("#checkmark")[i].click();await waitFor(200);}}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement