Skip to content

Instantly share code, notes, and snippets.

@aweary
Created June 27, 2020 19:59
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 aweary/fcea42ec750eb1f26164c120e77f20c5 to your computer and use it in GitHub Desktop.
Save aweary/fcea42ec750eb1f26164c120e77f20c5 to your computer and use it in GitHub Desktop.
function signPage() {
document.querySelectorAll("a[id^=sig]").forEach((node) => {
node.click();
});
setTimeout(() => {
document.querySelector('[data-bb-handler="sign"]').click();
setTimeout(() => {
document.querySelector(".goto_next_page").click();
}, 100);
}, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment