Skip to content

Instantly share code, notes, and snippets.

@chfoo
Created April 15, 2015 03:35
Show Gist options
  • Save chfoo/fdcefc5491be9ee03156 to your computer and use it in GitHub Desktop.
Save chfoo/fdcefc5491be9ee03156 to your computer and use it in GitHub Desktop.
Select the checkboxes on the session management page of a particular website
var nl = document.querySelectorAll('input[type="checkbox"]');
for (var i=100; i<nl.length; i++) {
nl.item(i).click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment