Last active
February 8, 2022 21:32
-
-
Save TimUntersberger/b41aa950f25721173d95c5d47d054f84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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