Last active
December 29, 2018 18:49
-
-
Save thanhtunguet/901833bed70531e77b58da0453e4d2bb to your computer and use it in GitHub Desktop.
Tự động đánh giá học phần
This file contains hidden or 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
(() => { | |
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