question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

BREAKING - File upload doesn't work with 2.1.0 release

See original GitHub issue

Steps 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:closed
  • Created 4 years ago
  • Reactions:8
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
gziolocommented, Feb 17, 2020

I wanted to integrate Puppeteer 2.1.1 but I see that fileUpload still doesn’t work: https://github.com/WordPress/gutenberg/pull/20268#issuecomment-587023772

2reactions
zaki-yamacommented, Feb 3, 2020

@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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found