Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samdoidge/6da5f5f3a5a5285f936c37cf37522752 to your computer and use it in GitHub Desktop.
Save samdoidge/6da5f5f3a5a5285f936c37cf37522752 to your computer and use it in GitHub Desktop.
Click all buttons on a page matching a specific class name
var buttons = document.getElementsByClassName('button-class');
for(var i = 0; i < buttons.length; i++)
buttons[i].click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment