Skip to content

Instantly share code, notes, and snippets.

@sharat94
Last active March 21, 2020 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharat94/79c0d2170b4224fde6f507b9d612210c to your computer and use it in GitHub Desktop.
Save sharat94/79c0d2170b4224fde6f507b9d612210c to your computer and use it in GitHub Desktop.
The Right Swiper
var confirmBox = confirm('Start swiping right?');
var count = 1;
var like = function(){
if (confirmBox){
document.querySelector('[aria-label="Like"]').click();
console.log('Liked ' + count); count++;
setTimeout(like, 2000);
}};
setTimeout(like, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment