Top "Puppeteer" questions

Puppeteer is a Node.

How to delete existing text from input using Puppeteer?

I'm trying to test amending text in an editable input which contains the title of the current record - and …

javascript node.js google-chrome-devtools puppeteer headless-browser
How to get all console messages with puppeteer? including errors, CSP violations, failed resources, etc

I am fetching a page with puppeteer that has some errors in the browser console but the puppeteer's console event …

puppeteer
How can I check that an element is visible with Puppeteer and pure JavaScript?

I wish to check that a DOM element is visible with Puppeteer and pure JavaScript (not jQuery), how can I …

javascript css node.js puppeteer visibility
Puppeteer: How to listen to a specific response?

I'm tinkering with the headless chrome node api called puppeteer. I'm wondering how to listen to a specific request response …

node.js puppeteer
Puppeteer Error: Chromium revision is not downloaded

I used npm i puppeteer as stated in the Documentation and I'm getting the following error: (node:2066) UnhandledPromiseRejectionWarning: Error: Chromium …

node.js npm chromium puppeteer
Puppeteer page.evaluate querySelectorAll return empty objects

I am trying out Puppeteer. This is a sample code that you can run on: https://try-puppeteer.appspot.com/ The …

javascript node.js google-chrome-devtools puppeteer google-chrome-headless
Puppeteer - How to fill form that is inside an iframe?

I have to fill out a form that is inside an iframe, here the sample page. I cannot access by …

puppeteer
Puppeteer - Protocol error (Page.navigate): Target closed

As you can see with the sample code below, I'm using Puppeteer with a cluster of workers in Node to …

node.js web-scraping puppeteer google-chrome-headless node-cluster
Getting DOM node text with Puppeteer and headless Chrome

I'm trying to use headless Chrome and Puppeteer to run our Javascript tests, but I can't extract the results from …

node.js google-chrome-headless puppeteer
How to use xpath in chrome headless+puppeteer evaluate()?

How can I use $x() to use xpath expression inside a page.evaluate() ? As far as page is not in …

javascript google-chrome xpath puppeteer