Skip to content

Instantly share code, notes, and snippets.

@zoka123
Created January 14, 2017 14:37
Show Gist options
  • Select an option

  • Save zoka123/04d420e6d450000faefbcfe0066da2c9 to your computer and use it in GitHub Desktop.

Select an option

Save zoka123/04d420e6d450000faefbcfe0066da2c9 to your computer and use it in GitHub Desktop.
Accept all friend request
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