Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
46 views

I’m trying to load an unpacked Chrome extension inside a Linux-based Docker container to automate extension testing. However, the extension does not load — neither when launching Chrome directly via ...
Sandip D's user avatar
  • 121
0 votes
0 answers
49 views

As the title says, I just installed node 25.0.0 and puppeteer on windows. Here is my file: const puppeteer = require('puppeteer'); var browser; var puppeteer_options = { headless: true, ...
raphael75's user avatar
  • 3,268
0 votes
0 answers
36 views

I used puppeteer in my Node.js project and wanted to deploy it to Render as Docker image but the puppeteer chromium browser fails to launch in Render and gives me the error trace below. The app runs ...
boom pow's user avatar
  • 331
0 votes
0 answers
51 views

I have an ASP.NET Core 8.0 Web API created with C# that provides an endpoint to create PDFs from HTML markup. I use PuppeteerSharp to create the PDF, and it worked fine locally, but it does not work ...
BeRo's user avatar
  • 194
0 votes
1 answer
63 views

I know page.$$() returns Array<ElementHandle>. Similarly I want to get Array<ElementHandle> by using page.$$eval() with some filtering. My use case is that I have a table that lists up any ...
bob's user avatar
  • 2,764
1 vote
0 answers
69 views

Good day. Im working on a project with Puppeteer Sharp where i need to pull data from a website that is locked with Google authentication. I want to open my profile that have been Authenticated. But ...
user3468577's user avatar
2 votes
0 answers
119 views

Getting next clue/socket-raw vendored error (Socket\Raw\Exception) when trying to launch Puppeteer browser: Socket operation failed: Resource temporarily unavailable (SOCKET_EAGAIN) Socket\Raw\...
Ivan Voznyuk's user avatar
-1 votes
1 answer
109 views

I'm using Puppeteer and JS to write a web scraper. The site I'm scraping is pretty intense, so I need to use a local chrome instance and a residential proxy service to get it working. Here's my basic ...
Alex's user avatar
  • 41
1 vote
1 answer
84 views

I'm trying to test that a particular element's event listener successfully throws an error. I want to catch the error so that my test does not automatically fail, but I'm not able to for some reason. ...
Eric's user avatar
  • 1,685
0 votes
0 answers
49 views

According to this Vercel page it seems like using a Vercel function to run Puppeteer should be doable, but not matter what I do, I end up with Unhandled Rejection: Error: Unable to get browser page. ...
Stephen Corwin's user avatar
1 vote
0 answers
69 views

I am trying to generate PDF invoices using Puppeteer in my Node.js app. Locally, the code works perfectly and generates the PDFs as expected. However, when I deploy the app to Elastic Beanstalk (...
Tanmoy Das's user avatar
0 votes
0 answers
28 views

When I deploy my Puppeteer core Node.js in serverless function, it doesn't work and works properly in local because I am using puppeteer base. "puppeteer-core": "^21.3.8" "@...
Jerome's user avatar
  • 23
0 votes
1 answer
68 views

I am using puppeteer to run a bunch of JS to process HTML files in headless chromium. I noticed that when I use the Chromium binary downloaded from https://storage.googleapis.com/chromium-browser-...
vijayvenkatesans's user avatar
0 votes
0 answers
59 views

I'm building an interactive India map using amCharts 5, where each state should be dynamically colored based on its purchase contribution percentage. The contribution data is coming from the backend, ...
MUKESH KASWAN's user avatar
0 votes
0 answers
67 views

The test below is a contrived example intended to demonstrate the issue I'm encountering. I'm using Jest and Puppeteer to test a function called doSomething. The file containing the function (random....
Eric's user avatar
  • 1,685
0 votes
0 answers
90 views

I am downloading a .pdf (A4) size using Puppeteer, however I am getting a light grey border around my pages. I have eliminated my .pdf HTML causing an issue by generating a blank A4 page and am still ...
David Henry's user avatar
  • 3,090
1 vote
2 answers
129 views

I have a very simple web scraper app whose sole purpose is to evaluate the javascript on a webpage and return the generated HTML. It works fine most of the time. However, it is not handling timeouts ...
skiaddict1's user avatar
2 votes
1 answer
218 views

I have problem to activate Puppeteer in my MacOS environment (M1 processor). I get the following error message: /usr/local/lib/node_modules/pa11y-ci/node_modules/puppeteer/lib/cjs/puppeteer/node/...
m.orange's user avatar
0 votes
1 answer
108 views

I'm currently facing an issue where my Node.js application crashes at night due to the internet provider forcing an internet disconnection, which leads to an ECONNREFUSED error in my Puppeteer code. ...
UsAA12's user avatar
  • 37
-1 votes
1 answer
119 views

I'm working with a custom build of the SignalFx Synthetics Agent, which uses Puppeteer and Google Chrome. Previously, Kerberos authentication worked fine with the following setup: Installed krb5-user ...
Psychozoic's user avatar
0 votes
1 answer
116 views

Can someone help me with a styling issue, it's driving me crazy. I use puppeteer within nodejs and it works fine until I started styling. I noticed that styling has trouble with dynamic content via js....
Riccoh's user avatar
  • 403
-2 votes
1 answer
69 views

Considering this Puppeteer test: it('should validate [email protected] access flow', async () => { const browser = await puppeteer.launch({ slowMo:10 }) await browser.deleteCookie() const page = ...
charnould's user avatar
  • 2,955
1 vote
0 answers
193 views

I'm using Puppeteer to scrape data from a website and it works fine for a couple hours. But after some time it randomly stops working and I get the error below. I saw other posts and Stackoverflow ...
Neeko's user avatar
  • 381
1 vote
1 answer
54 views

Initially two json files arrive on the site - the rest arrive after clicking the ‘load more’ button. I'm trying to intercept all requests. The example shows how I am waiting for the button to appear ...
Artem Taran's user avatar
1 vote
0 answers
151 views

I've installed puppeteer on my docker container, and installed chrome for it here you can see that I have them: and I even run the test to check if puppeteer works on my container: node -e "...
Urek Mazino's user avatar

1
2 3 4 5
161