]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix the upload test for IE11 (at least). (#8035)
authorDenis <denis@vaadin.com>
Mon, 19 Dec 2016 11:56:48 +0000 (13:56 +0200)
committerHenri Sara <henri.sara@gmail.com>
Mon, 19 Dec 2016 11:56:48 +0000 (13:56 +0200)
The upload test should use an Upload in non-immediate mode because the
file name is written in-line into the Upload text input and the button
is used to upload a file without showing a file chooser dialog. The test
for upload in immediate mode works for Chrome (no file chooser window
issue) but it doesn't work for IE11 (at least, may be the same issue for
FF).
So the test UI is just updated to use non-immediate mode.

uitest/src/main/java/com/vaadin/tests/components/upload/TestFileUpload.java

index 621141ce31c1367cd83938d000e232c7353944bf..e400dcb0be380c930d7699a53023760af8c72fe8 100644 (file)
@@ -53,6 +53,7 @@ public class TestFileUpload extends TestBase implements Receiver {
                 baos.reset();
             }
         });
+        u.setImmediateMode(false);
 
         addComponent(log);
         addComponent(u);