Created
June 20, 2018 20:53
-
-
Save cheahjs/651f2bd32e434976a3e5d77c04264e6d to your computer and use it in GitHub Desktop.
Cambridge CamSIS Results Auto Refresh
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
// Run inside debugger on view results page. | |
// Select results before running | |
// 10s interval | |
setInterval(() => { | |
// trigger "View Results" | |
submitAction_win0(document.win0,"HR_LINK_WRK_DETAILS_PB",event); | |
// wait 9.5s before triggering "Change Term" to refresh page | |
setTimeout(() => submitAction_win0(document.win0,"HR_LINK_WRK_HR_RETURN_LINK",event), 9500); | |
}, 10000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment