Skip to content

Instantly share code, notes, and snippets.

@stories2
Last active April 9, 2021 10:25
Show Gist options
  • Save stories2/94bd10267fa1651acbde8a1f57c6abf6 to your computer and use it in GitHub Desktop.
Save stories2/94bd10267fa1651acbde8a1f57c6abf6 to your computer and use it in GitHub Desktop.
야구경기 보러 가즈아
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