waitForTimeout(1000);34 await page.screenshot({ path: `example.png` });35 await browser.close();36})();37const { chromium } = require('playwright');38(async () => {39 const browser = await chromium.launch();40 const context = await browser.newContext();41 const page = await ...
Hi I have tried to use the waitForSelector, as I am expecting an element to show 10 seconds later. However, it appears that as of now, the maximum allowable for timeout appears to be at 2000ms. await page.waitForSelector("h3[class=\"text...
page.waitForResponse: Page closed 54 | await page.goto('https://letcode.in/elements'); 55 | await Promise.all([ > 56 | await page.waitForResponse(res => res.url() === 'https://api.github.com/users/ortonikc' && res.status === 200), | ^ 57 | await page.fill("input[name='...
Steps to reproduce Tell us about your environment: Puppeteer version: 0.14.0 Platform / OS version: MacOS (Dockerized in node:10) URLs (if applicable): https://j4q389wzv3.codesandbox.io/ Node.js version: v10.15.3 What steps will reproduc...