Last active
April 9, 2021 10:25
-
-
Save stories2/94bd10267fa1651acbde8a1f57c6abf6 to your computer and use it in GitHub Desktop.
야구경기 보러 가즈아
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
document.querySelector('ul#select_seat_grade').style.height='400px'; | |
function delay() { | |
return new Promise(resolve => { | |
setTimeout(() => { | |
resolve(); | |
}, 5000) | |
}) | |
} | |
function refresh() { | |
return new Promise(resolve => { | |
document.querySelector('a.btn_refresh.ng-binding').click(); | |
resolve() | |
}) | |
} | |
function process() { | |
refresh() | |
.then(() => delay()) | |
.then(() => process()) | |
} | |
process(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment