Skip to content

Instantly share code, notes, and snippets.

@TimUntersberger
Last active February 8, 2022 21:32
Show Gist options
  • Save TimUntersberger/b41aa950f25721173d95c5d47d054f84 to your computer and use it in GitHub Desktop.
Save TimUntersberger/b41aa950f25721173d95c5d47d054f84 to your computer and use it in GitHub Desktop.
(function(){
Array
.from(
document
.querySelector(
'#app > div > div.un-app > div > section > section > div > section > div > div > div.un-flex-pane.un-master-page__grid > div > table > tbody'
)
.children
)
.map(child => child.firstChild.firstChild)
.forEach(x => x.click());
document
.querySelector(
'#app > div > div.un-app > div > section > section > div > section > div > div > div.un-flex-pane.un-flex-pane--fixed.un-master-page__actions > form > div > div > ul > li:nth-child(2) > a'
)
.click();
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment