Created
August 19, 2020 12:07
-
-
Save suhaotian/3b859d8e08606087d68f35154d12a00b to your computer and use it in GitHub Desktop.
B站注册自动答题脚本
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
setInterval(() => { | |
[].slice | |
.call(document.querySelectorAll(".answer-outer")) | |
.forEach((item, i) => { | |
setTimeout(() => { | |
item.click(); | |
}, 1500 * i); | |
}); | |
}, 6 * 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1