Created
January 9, 2021 08:05
-
-
Save manjurulhoque/7abf84d9963f2d119ea1a03f7a194804 to your computer and use it in GitHub Desktop.
Github follow all people in a page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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