Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
62 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
45 views

I have this with node 25.0.0 and Windows and puppeteer. Basically the get_card_search_results is called and it loads a page that features lazy loading. It will "scroll" the page down to ...
raphael75's user avatar
  • 3,268
0 votes
0 answers
57 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
1 vote
1 answer
51 views

I have an HTML table with data like Username is admin Actions New User ✓ Make Admin Old User Make Admin After clicking "Make Admin", how do I wait for the check mark to show up? I figured ...
lmat - Reinstate Monica's user avatar
0 votes
0 answers
43 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
36 views

When I open a local website using Puppeteer and Microsoft Edge I get a "Translate page from [language]" popup like seen in the screenshot below. I currently launch Microsoft Edge using the ...
Svish's user avatar
  • 159k
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
0 answers
40 views

I am building a Manifest V3 Chrome Extension using Firebase and testing it with Jest and Puppeteer. My manual testing works perfectly, but one specific automated test consistently fails with a 30-...
David Kessler's user avatar
0 votes
1 answer
65 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
0 votes
0 answers
34 views

I am trying to access Shadow DOM content using Puppeteer’s page.content(), but I am not able to retrieve it. Is this intentional, and if so, why? I tried page.content() for the shadow dom content but ...
piyush jindal's user avatar
1 vote
0 answers
76 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
0 votes
1 answer
84 views

I want to automate deleting my ChatGPT chats because I have about 244 of them, and I’m not going to do that manually. What I want to do is scroll down to the bottom until there are no more chat items, ...
Ukpa Uchechi's user avatar
2 votes
0 answers
122 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
0 votes
4 answers
232 views

I’m using Tailwind CSS with my project (Puppeteer for PDF export, but this also happens in plain HTML rendering). I noticed that spacing utilities with fractional values such as mr-1.5, ml-2.5, etc. ...
Olivér Raisz's user avatar
-1 votes
1 answer
113 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
2 votes
2 answers
180 views

I'm trying to add an "export to pdf" button to a webpage. I'm aware that Puppeteer is mostly used as a Node.js library, but the documentation for Puppeteer specifically mentions that it's ...
Laura Vonessen's user avatar
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
1 answer
67 views

I get an error when trying to click on this checkbox using puppeteer. HTML/DOM: <div class="input-container"> <label class="st-checkbox" aria-checked="false"&...
Nermin's user avatar
  • 1,140
0 votes
0 answers
54 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
0 votes
0 answers
98 views

I’m running a Lighthouse user-flow using Puppeteer to measure performance on our web app. When I execute my script with just Puppeteer, the app loads in desktop view exactly as expected. But whenever ...
kushan's user avatar
  • 785
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
1 answer
141 views

I'm trying to use Puppeteer to find elements on a page with a click handler. Doing this is not possible using Puppeteer directly, but Puppeteer exposes the Chrome Devtools Protocol which allows me to ...
Slicedpan's user avatar
  • 5,017
0 votes
0 answers
33 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
0 answers
72 views

Environment Puppeteer: ^24.14.0 Node-RED: latest (from nodered/node-red Docker image) Docker on Alpine Linux Works locally in Docker, fails in AWS ECS (both Fargate and EC2) Error TypeError: req.on is ...
pengwin's user avatar
  • 87
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
-1 votes
2 answers
67 views

I am trying to scrape a web page using puppeteer, however, I can't access var doc with puppeteer. Although I can see it in the source page of my web browser var rows = []; var i = 1; /* while(i <= ...
M.M. CAN's user avatar
0 votes
0 answers
64 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
1 vote
2 answers
193 views

I've run into an issue while using Puppeteer with a proxy: On some websites, the proxy works without any problems. However, on others—such as csfloat.com—the connection fails, and Puppeteer crashes ...
UsAA12's user avatar
  • 37
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
81 views

I have a scraper running on Puppeteer and Node.js. When I change the headless mode from false to true, the bot gets detected. I would like it to work with false since the deployment will be on Railway....
Juliaano's user avatar
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
0 votes
1 answer
104 views

This is a followup question to this one, which resolves a missing definition of TimeoutError in my puppeteer code. Thing is, I want to use puppeteer-extra, and despite being a lightweight wrapper for ...
skiaddict1's user avatar
1 vote
2 answers
132 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
2 answers
1k views

This has started happening recently and am struggling to work out why. The line: await page.GoToAsync(fromURL.ToString()); Throws the exception: MESSAGE: Protocol error (Page.navigate): Invalid ...
Tom Gullen's user avatar
  • 61.9k
2 votes
1 answer
225 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
-2 votes
1 answer
694 views

I'm trying to automate loading web pages. I have tried to use cURL for this task. Forget about it! Those days are long gone. You will only get a "Just a moment..." dummy page returned. ...
user291937's user avatar
0 votes
1 answer
114 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
0 votes
1 answer
57 views

I am working on a website that contains multiple cards, each featuring a button that triggers navigator.share, opening a dialog with a link inside. I need to extract that link using Puppeteer for ...
Kraken's user avatar
  • 139
-1 votes
1 answer
121 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
1 vote
0 answers
44 views

I am trying to get the Apex.js graph in the puppeteer , but it is not getting printed though graph is getting render in the page where from where puppeteer has to download. Other contents are present ...
Sam's user avatar
  • 11
0 votes
1 answer
118 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
1 vote
1 answer
142 views

I cannot run Puppeteer with my Firefox installed by apt. I need this because I want to use secure binary, controled by apt. I get this error: /temp/t/puppeteer/node_modules/puppeteer-core/lib/cjs/...
youni's user avatar
  • 17
-2 votes
1 answer
72 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,965
4 votes
2 answers
920 views

I used to debug Chrome with PuppeteerSharp. For that, I run Chrome with command: "C:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 --profile-directory=&...
bankangle's user avatar
  • 129
1 vote
0 answers
199 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
0 votes
0 answers
96 views

I want to access the document of an iframe that is loaded from a different domain than the main page. I know that this is normally impossible due to browser security policies, but I found some ...
UsAA12's user avatar
  • 37
1 vote
1 answer
60 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
0 votes
0 answers
142 views

Suddenly I started getting this error while trying to print to pdf: browserType.launch: Target page, context or browser has been closed Browser error while loading shared libraries: libglib-2.0.so.0: ...
Mohamed Said's user avatar
1 vote
0 answers
153 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
0 votes
0 answers
98 views

We're operating a number of Chrome cloud-browsers managed by Puppeteer on each of our Linux servers. The web application within each browser is relatively well-behaved and uses window.navigator....
rsaxvc's user avatar
  • 1,795

1
2 3 4 5
161