Skip to content

Instantly share code, notes, and snippets.

@omisolaidowu
Last active February 22, 2024 04:09
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/3410a46bbfb727e831879404cef5b13e to your computer and use it in GitHub Desktop.
Save omisolaidowu/3410a46bbfb727e831879404cef5b13e to your computer and use it in GitHub Desktop.
Visit
(async () => {
// ...
// visit CreepJS
await page.goto('https://abrahamjuliot.github.io/creepjs/');
// use setTimeout to wait for the page to load
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