Skip to content

Instantly share code, notes, and snippets.

@housemeow
Created January 31, 2018 06:49
Show Gist options
  • Save housemeow/b9880d587a6677180f4854e06c435c1e to your computer and use it in GitHub Desktop.
Save housemeow/b9880d587a6677180f4854e06c435c1e to your computer and use it in GitHub Desktop.
do {
var next;
var promise = new Promise(resolve => {
next = resolve;
});
console.log('System Maintenance!')
await sleep(3000)
page.once('frameattached', ()=> {
next();
});
await page.reload();
await promise;
} while(await mainFrame.title() == 'System Maintenance');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment