Top "Puppeteer" questions

Puppeteer is a Node.

How to manage log in session through headless chrome?

I want to create a scraper that: opens a headless browser, goes to a url, logs in (there is steam …

javascript cookies web-scraping headless puppeteer
How to download file with puppeteer using headless: true?

I've been running the following code in order to download a csv file from the website http://niftyindices.com/resources/…

node.js chromium puppeteer
How to use proxy in puppeteer and headless Chrome?

Please tell me how to properly use a proxy with a puppeteer and headless Chrome. My option does not work. …

javascript node.js proxy puppeteer
How to maximise Screen use in Pupeteer ( non-headless )

I'm testing out puppeteer for chrome browser automation ( previously using selenium but had a few headaches with browser not waiting …

javascript puppeteer
How can I download images on a page using puppeteer?

I'm new to web scraping and want to download all images on a webpage using puppeteer: const puppeteer = require('puppeteer'); …

javascript web-scraping puppeteer google-chrome-headless
Opening local HTML file using Puppeteer

Is it possible to open a local HTML file with headless Chrome using Puppeteer (without a web server)? I could …

unit-testing google-chrome automation puppeteer
While running the script throws cannot find module 'dotenv'

While loading the .env file to pass env values to the getToken.js script in the cypress root folder throws …

puppeteer cypress dotenv
how do POST request in puppeteer?

(async() => { const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.goto('https://www.example.com/search'); …

google-chrome http https google-chrome-headless puppeteer
Inject jQuery into Puppeteer page

I'm trying to inject jQuery into my Puppeteer page because document.querySelector doesn't cut it for me: async function inject_…

javascript jquery node.js google-chrome-devtools puppeteer
How to login in Puppeteer?

I'm new to JavaScript and Puppeteer. I tried the login code below, but it failed. In comparison, I added page2 …

javascript node.js google-chrome-devtools puppeteer headless