Skip to content

Instantly share code, notes, and snippets.

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 manjurulhoque/7abf84d9963f2d119ea1a03f7a194804 to your computer and use it in GitHub Desktop.
Save manjurulhoque/7abf84d9963f2d119ea1a03f7a194804 to your computer and use it in GitHub Desktop.
Github follow all people in a page
let forms = document.querySelectorAll('[aria-label="Follow this person"]');
for(var i = 0; i < forms.length; i++) {
forms[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment