Context object.
URL to navigate to.
Optional
options: WaitForOptionsOptional Puppeteer options for waiting.
// Navigates to "https://example.com" and waits until the network is idle for 1 second.
await goToPage(ctx, 'https://example.com', { waitUntil: 'networkidle0', timeout: 1000 });
Generated using TypeDoc
Navigates to the specified URL in the given browser tab.