Skip to content

Instantly share code, notes, and snippets.

@andipyk
Created May 20, 2020 15:43
Show Gist options
  • Save andipyk/823c6fc9a907a5d295112e0bd2f60b06 to your computer and use it in GitHub Desktop.
Save andipyk/823c6fc9a907a5d295112e0bd2f60b06 to your computer and use it in GitHub Desktop.
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