Created
January 14, 2017 14:37
-
-
Save zoka123/04d420e6d450000faefbcfe0066da2c9 to your computer and use it in GitHub Desktop.
Accept all friend request
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
| var matches = document.querySelectorAll("button"); | |
| for(var i = 0; i < matches.length; i++){ | |
| var item = matches[i]; | |
| if(item.innerHTML == "Confirm"){ | |
| item.click(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment