Skip to content

Instantly share code, notes, and snippets.

@hendrixroa
Created March 9, 2023 22:29
Show Gist options
  • Save hendrixroa/c3432f9c93231afdfcd3e365494219c6 to your computer and use it in GitHub Desktop.
Save hendrixroa/c3432f9c93231afdfcd3e365494219c6 to your computer and use it in GitHub Desktop.
Getting a headless browser instance and open a url.
const page = await this.browser.getPage();
await page.goto(this.baseURL, {
timeout: 300000,
waitUntil: 'networkidle0',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment