puppeteer-firefox win64 zip file isn't available for Windows users
See original GitHub issueSteps to reproduce
Tell us about your environment:
- Puppeteer version: NA
- Platform / OS version: Windows
- URLs (if applicable): NA
- Node.js version: NA
What steps will reproduce the problem?
npm i puppeteer-firefox
Please include code that reproduces the issue.
ERROR: Failed to download Firefox rv0.0.1!
Error: Download failed: server returned code 404. URL: https://github.com/puppeteer/juggler/releases/download/v0.0.1/firefox-win64.zip
```
**What is the expected result?**
No errors.
**What happens instead?**
404 on `firefox-win64.zip`
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:5
Top Results From Across the Web
how do you install and run puppeteer for firefox - Stack Overflow
Run "PUPPETEER_PRODUCT=firefox npm install" or "PUPPETEER_PRODUCT=firefox yarn install" to download a supported Firefox browser binary.
Read more >1543115 - Accomodate to Puppeteer grepping stderr to fetch ...
Puppeteer is grepping the stderr of chromium in order to find the WebSocket server URL that is printed on stderr by chromium in...
Read more >Puppeteer: Headless Chrome Node.js API - Morioh
Puppeteer. Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. Puppeteer runs headless...
Read more >Use WebDriver to automate Microsoft Edge
WebDriver accesses functionality and information that's not available to JavaScript running in browsers. · WebDriver simulates user events or OS- ...
Read more >How To Download & Upload Files Using Selenium With Java
Downloading files in Selenium WebDriver Using Java ... This will help to automate windows based Alert or pop up, Print pop up or...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I suspect this is the same issue as: https://github.com/puppeteer/puppeteer/issues/5310. Kind of pain that it still hasn’t been fixed or addressed. I’ve set the following in my package.json to get around the issue:
"puppeteer-firefox": "0.5.0"
npm i puppeteer-firefox@0.5.0
worked for me, this will do fine until devs fix updated version.