Two ways:
Edit it in the manual method or from the script in Tampermonkey.
value='6'
Change 6
to whichever value you want, I think score 1 is 0? Find out from the inspect element. 6 means "Can not answer" which makes the system skip your evaluation while calculating the staff's score, but it won't lock your account. This is my hypothesis, but I did it for 3 semesters at least and my account wasn't locked, thankfully.
- Sign in normally from one of the following:
- IMPORTANT: open your evaluation from here, choose std or chreg based on the one you chose in the previous step:
- Open browser console (F12 then go to console tab).
- Paste the following script then run. To run in just paste and click on enter button. The script will auto go to the next page, then you need to again and repeat this step until the evaluation is over.
- Script:
var jqry = document.createElement('script');
jqry.src = "https://code.jquery.com/jquery-3.3.1.min.js";
document.getElementsByTagName('head')[0].appendChild(jqry);
setTimeout( () => {
$("td").children("input[value='6']").prop("checked", true);
$("input[type='submit']").click()
}, 1000);
- Install Tampermonkey extension here (note that any userscript extension is supported).
- Install the script from here.
- Sign in normally from one of the following:
- IMPORTANT: open your evaluation from here, choose std or chreg based on the one you chose in the previous step:
- Nothing more to do, it should do it automatically, hopefully.
- You don't need reinstall every semester unless you uninstall the extension.