Last active
June 27, 2021 18:46
-
-
Save ajinabraham/104b0d6df604b58d3cf49112c0495e0f to your computer and use it in GitHub Desktop.
This file contains 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
//Head on to https://www.linkedin.com/mynetwork/invitation-manager/ | |
//In browser console | |
var buttons = document.getElementsByTagName('button') | |
for (let i = 0; i < buttons.length; i++) { | |
var aria = buttons[i].getAttribute("aria-label") | |
if (aria && aria.startsWith("Accept")) { | |
buttons[i].click() | |
console.log(aria) | |
} | |
} |
Author
ajinabraham
commented
Jun 27, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment