Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. const clickLikeButton = () => {
  2. const buttons = document.getElementsByClassName("recsGamepad__button");
  3. if (buttons) {
  4. const likeButton = buttons[3];
  5. likeButton.click();
  6. } else {
  7. alert("no buttons");
  8. }
  9. };
  10.  
  11. setInterval(clickLikeButton, 1000);
  12. completion([]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement