Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Created October 12, 2019 02:33
Show Gist options
  • Save johnmurch/6e15ad98084c7f14e37cfb96a39d17e0 to your computer and use it in GitHub Desktop.
Save johnmurch/6e15ad98084c7f14e37cfb96a39d17e0 to your computer and use it in GitHub Desktop.
Random Puppeteer Snippet - Closes most modals
// fuck modals!
await page.evaluate(() => {
Array.from(document.getElementsByClassName('close')).filter((c) => { c.click()})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment