Guest User

Untitled

a guest
Jan 3rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. let likesGiven = 0;
  2. setInterval(() => {
  3. const heart = document.querySelector('.coreSpriteHeartOpen');
  4. const arrow = document.querySelector('.coreSpriteRightPaginationArrow');
  5. if (heart) {
  6. likesGiven++;
  7. heart.click();
  8. }
  9. arrow.click();
  10. console.log('You have liked ' + likesGiven + ' posts!');
  11. }, 10000);
Add Comment
Please, Sign In to add comment