Skip to content

Instantly share code, notes, and snippets.

@darinalleman
Created March 20, 2018 17:43
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 darinalleman/36df18541ff93820b318a87a8e968469 to your computer and use it in GitHub Desktop.
Save darinalleman/36df18541ff93820b318a87a8e968469 to your computer and use it in GitHub Desktop.
function isDope(object) {
return object.tagName === 'BUTTON';
}
var arr = Array.from(document.getElementsByClassName('thumbs-up '));
var button = arr.find(isDope);
setInterval(function() {
button.click();
console.log('clicked!');
}, 20000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment