Created
October 3, 2017 03:10
-
-
Save wozozo/92708d1ee1b40504568c4f9daa154749 to your computer and use it in GitHub Desktop.
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 () { | |
var i = 0; | |
document.querySelectorAll('tr.days .dval.vst').forEach(function(e) { | |
setTimeout(function () { | |
e.click(); | |
document.querySelector('#startTime').value = '10:30'; | |
document.querySelector('#endTime').value = '20:00'; | |
document.querySelector('#dlgInpTimeOk').click(); | |
}, 4000 * i); | |
i++; | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment