Skip to content

Instantly share code, notes, and snippets.

@omisolaidowu
Created February 22, 2024 05:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omisolaidowu/16239321fb2c5797a8dfba0a38fb8629 to your computer and use it in GitHub Desktop.
Save omisolaidowu/16239321fb2c5797a8dfba0a38fb8629 to your computer and use it in GitHub Desktop.
Visit page
(async () => {
// ...
await page.goto('https://abrahamjuliot.github.io/creepjs/');
// use setTimeout to wait for the page to load for easy navigaion
await new Promise(resolve => setTimeout(resolve, 100000));
await browser.close();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment