Skip to content

Instantly share code, notes, and snippets.

@thanhtunguet
Last active December 29, 2018 18:49
Show Gist options
  • Save thanhtunguet/901833bed70531e77b58da0453e4d2bb to your computer and use it in GitHub Desktop.
Save thanhtunguet/901833bed70531e77b58da0453e4d2bb to your computer and use it in GitHub Desktop.
Tự động đánh giá học phần
(() => {
let x = document.getElementsByTagName('input');
for (let i = 0; i < x.length; i++) {
if (x[i].value === "4") {
x[i].click();
}
}
let submit = document.getElementsByName('submit')[0];
submit.click();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment