Skip to content

Instantly share code, notes, and snippets.

@patelc75
Created April 25, 2013 20:41
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 patelc75/5462973 to your computer and use it in GitHub Desktop.
Save patelc75/5462973 to your computer and use it in GitHub Desktop.
this will check all the boxes for the Add Contact modal on http://www.ringcentral.com/
checkboxes = document.getElementsByClassName("x-form-checkbox-box");
for (var i=0; i < checkboxes.length; i++) {
checkboxes[i].getElementsByTagName("img")[0].click();
};
@patelc75
Copy link
Author

you can paste the whole thing all at once into the browser inspector command line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment