BREAKING - File upload doesn't work with 2.1.0 release
See original GitHub issueSteps to reproduce
Tell us about your environment:
- Puppeteer version: 2.1.0
- Platform / OS version: any
- URLs (if applicable): any which shows a file input dialog box
- Node.js version: ~12
What steps will reproduce the problem?
- Run following script
const puppeteer = require("puppeteer");
(async () => {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto("https://cgi-lib.berkeley.edu/ex/fup.html", {
waitUntil: "networkidle2"
});
})();
- Click on the “choose file” button
Expectation: A file chooser dialog will appear Result: Dialog box doesn’t appear End issue: Any upload that requires file chooser dialog breaks. Possible reason: New changes with #5196
NOTE: It works fine with 2.0.0 release.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:8
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Changes — Flask Documentation (2.2.x)
Fixed an issue with URL processors not properly working on blueprints. Version 0.7.1¶. Released 2011-06-29. Added missing future import that broke 2.5 ...
Read more >Spring Boot application can't resolve the org.springframework ...
Doing this resolved the issue The import org.springframework.boot. ... I tried to use the latest spring-boot version from the official ...
Read more >Bug listing with status RESOLVED with resolution FIXED as at ...
status:RESOLVED resolution:FIXED severity:normal · Bug:354 - "Important new version SquirrelMail containing some fixes for security related issues" ...
Read more >Release notes for the Microsoft JDBC Driver for SQL Server
jar file from the 11.2 package should be used with Java 17. Compatible with Java Development Kit (JDK) version 18.0, 17.0, 11.0, and...
Read more >Changelog - Cypress Documentation
Fixed an issue where the incorrect Cypress version could be shown in the ... styles in a separate css file you import in...
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 wanted to integrate Puppeteer
2.1.1
but I see thatfileUpload
still doesn’t work: https://github.com/WordPress/gutenberg/pull/20268#issuecomment-587023772@mathiasbynens I have a question about the current status. I’m facing this problem in the library that uses puppeteer. It seems related PR (#5369 ) has already been merged, are you going to release the fixed version (v2.1.1?) soon?