Top "Puppeteer" questions

Puppeteer is a Node.

How to reload page in Puppeteer?

I would like to reload the page whenever the page doesn't load properly or encounters a problem. I tried page.…

javascript node.js chromium puppeteer
Puppeteer doesn't close browser

I'm running puppeteer on express/node/ubuntu as follow: var puppeteer = require('puppeteer'); var express = require('express'); var router = express.…

javascript express async-await puppeteer
Set pupeteer window size when running not headless (not viewport)

Is it somehow possible to set the browsers (Chrome[ium]) window size like the viewport size? Setting only the viewport …

javascript google-chrome typescript testing puppeteer
Puppeteer: How to get the contents of each element of a nodelist?

I'm trying to achieve something very trivial: Get a list of elements, and then do something with the innerText of …

javascript node.js google-chrome-devtools puppeteer headless-browser
How to handle popups in puppeteer

how to handle the popup and access the popup to do some operations on it. const puppeteer = require('puppeteer'); async …

node.js google-chrome-headless puppeteer
Error: Failed to launch the browser process puppeteer

checked failed crashForExceptionInNonABIComplianceCodeRange the code below its functon is to create PDF file (async function() { try { const browser = await puppeteer.…

node.js puppeteer
How can I capture all network requests and full response data when loading a page in Chrome?

Using Puppeteer, I'd like to load a URL in Chrome and capture the following information: request URL request headers request …

javascript google-chrome puppeteer
Force headless chromium/chrome to use actual gpu instead of Google SwiftShader

I'm trying to print html to pdf using headless chromium (using puppeteer) and everything works fine except if html contains …

google-chrome gpu puppeteer headless compositing
await page.cookies() not returning cookies seen in response header

I am executing a basic puppeteer script that opens a webpage looks at response values and then pulls the cookies. …

puppeteer google-chrome-headless