Skip to content

Instantly share code, notes, and snippets.

@zhrivodkin
Last active August 16, 2016 22:44
Show Gist options
  • Save zhrivodkin/ee73dc7f5630b6f482356ae21059da9f to your computer and use it in GitHub Desktop.
Save zhrivodkin/ee73dc7f5630b6f482356ae21059da9f to your computer and use it in GitHub Desktop.
function doSetTimeout(i) {
setTimeout(function() {
document.querySelectorAll('.flat_button.button_small.button_wide:not(.secondary):not(.button_disabled):not([style])')[i].click();
}, 1000);
};
for (index = 0; index < 21; ++index) {
doSetTimeout(index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment