Created
September 2, 2019 08:40
-
-
Save uchiiii/59753911a290e4ef6fab3fd55ef7337d to your computer and use it in GitHub Desktop.
Acure 輪投げゲームのクリア用コード
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
timer = setInterval(function(){ | |
arrow = document.getElementsByClassName('play__cursor')[1]; | |
if(window.getComputedStyle(arrow, null).getPropertyValue('display') == "none"){ | |
document.getElementsByClassName('play__attack')[0].click(); | |
clearInterval(timer); | |
} | |
}, 190); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment