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 sysnucleussupport/f92b2ed59440f68ef3b3c6ccbd8318bf to your computer and use it in GitHub Desktop.
Save sysnucleussupport/f92b2ed59440f68ef3b3c6ccbd8318bf to your computer and use it in GitHub Desktop.
var buttons = document.getElementsByTagName('a');
for (var i = buttons.length - 1; i >= 0; i--) {
var button = buttons[i];
if(button.innerText == 'Both Teams to Score') {
button.click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment