Created
March 20, 2020 12:20
-
-
Save johnniehard/a6790215dcf441e642a9514556bfddcc to your computer and use it in GitHub Desktop.
kör alla tasks i EE webbklienten
This file contains 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 runTaskList() { | |
//1. task local type-EXPORT_FEATURES awaiting-user-config | |
//2. task local type-EXPORT_IMAGE awaiting-user-config | |
var tasklist = document.getElementsByClassName('awaiting-user-config'); | |
for (var i = 0; i < tasklist.length; i++) | |
tasklist[i].children[2].click(); | |
} | |
// confirmAll(); | |
function confirmAll() { | |
var ok = document.getElementsByClassName('goog-buttonset-default goog-buttonset-action'); | |
for (var i = 0; i < ok.length; i++) | |
ok[i].click(); | |
} | |
runTaskList(); | |
confirmAll(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment