Created
May 20, 2020 15:43
-
-
Save andipyk/823c6fc9a907a5d295112e0bd2f60b06 to your computer and use it in GitHub Desktop.
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
var count = 0; | |
setInterval(function() { | |
var heart = document.querySelector('.wpO6b'); | |
var arrow = document.querySelector('a.coreSpriteRightPaginationArrow'); | |
if (heart) { | |
heart.click(); | |
count++; | |
console.log(`You have liked ${count} photos`); | |
} | |
arrow.click(); | |
}, 10000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment