We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f7b14 commit 6dfeab1Copy full SHA for 6dfeab1
script.js
@@ -1,13 +1,13 @@
1
2
// chanage keys value
3
-const keys = "CABDAAAAACDAADBABAABCAABDBABBCDABCCBCDAD";
4
-const len = keys.length;
+const ans = "CABDAAAAACDAADBABAABCAABDBABBCDABCCBCDAD";
+const len = ans.length;
5
6
let i = 0;
7
8
const inter = setInterval(
9
() => {
10
- document.querySelector(`#${keys[i]}_${i+1}`).click(); // select the correct option
+ document.querySelector(`#${ans[i]}_${i+1}`).click(); // select the correct option
11
document.querySelector("#main_div > div.tableWidthPercent > div.onlineTestLeftDiv > div.qnav > span.saveNextButton > a").click(); // move to next question
12
i++;
13
0 commit comments