Top "Puppeteer" questions

Puppeteer is a Node.

Message "Async callback was not invoked within the 5000 ms timeout specified by jest.setTimeout"

I'm using Puppeteer and Jest to run some front end tests. My tests look as follows: describe("Profile Tab Exists …

javascript automated-tests jestjs puppeteer
Puppeteer wait page load after form submit

I submit a form using the following code and i want Puppeteer to wait page load after form submit. await …

javascript puppeteer
How to click on element with text in Puppeteer

Is there any method (didn't find in API) or solution to click on element with text? For example I have …

puppeteer
Puppeteer: pass variable in .evaluate()

I'm trying to pass a variable into a page.evaluate() function in Puppeteer, but when I use the following very …

javascript web-scraping evaluate puppeteer
puppeteer: wait N seconds before continuing to the next line

In puppeteer I would like to wait a defined time before going to the next line of code. I've tried …

javascript node.js chromium puppeteer browser-testing
puppeteer: how to wait until an element is visible?

I would like to know if I can tell puppeteer to wait until an element is displayed. const inputValidate = await …

javascript node.js google-chrome-devtools puppeteer
Puppeteer wait until page is completely loaded

I am working on creating PDF from web page. The application on which I am working is single page application. …

javascript pdf-generation puppeteer google-chrome-headless
How to select an option from dropdown select

I can click the selector but my question is how to select one of the options from the dropdown list? …

puppeteer
How to fill an input field using Puppeteer?

I'm using Puppeteer for E2E test, and I am now trying to fill an input field with the code …

javascript node.js google-chrome-devtools puppeteer e2e-testing
Node.js puppeteer - How to set navigation timeout?

I'm using node.js and puppeteer to get some data. Some of the files I'm opening are quite large ... and …

javascript node.js puppeteer