Created
March 9, 2023 22:29
-
-
Save hendrixroa/c3432f9c93231afdfcd3e365494219c6 to your computer and use it in GitHub Desktop.
Getting a headless browser instance and open a url.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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