Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let likesGiven = 0;
- setInterval(() => {
- const heart = document.querySelector('.coreSpriteHeartOpen');
- const arrow = document.querySelector('.coreSpriteRightPaginationArrow');
- if (heart) {
- likesGiven++;
- heart.click();
- }
- arrow.click();
- console.log('You have liked ' + likesGiven + ' posts!');
- }, 10000);
Add Comment
Please, Sign In to add comment