Skip to content

Commit f7c9b5f

Browse files
committed
Unignoring file uploading test in marionette
1 parent 1f1644d commit f7c9b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: java/client/test/org/openqa/selenium/UploadTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
* Demonstrates how to use WebDriver with a file input element.
4343
*/
44-
@Ignore(value = {SAFARI, MARIONETTE}, issues = {4220})
44+
@Ignore(value = {SAFARI}, issues = {4220})
4545
public class UploadTest extends JUnit4TestBase {
4646

4747
private static final String LOREM_IPSUM_TEXT = "lorem ipsum dolor sit amet";
@@ -63,7 +63,7 @@ public void testFileUploading() throws Exception {
6363
TestUtilities.getEffectivePlatform(driver).is(ANDROID));
6464
driver.get(pages.uploadPage);
6565
driver.findElement(By.id("upload")).sendKeys(testFile.getAbsolutePath());
66-
driver.findElement(By.id("go")).submit();
66+
driver.findElement(By.id("go")).click();
6767

6868
// Uploading files across a network may take a while, even if they're really small
6969
WebElement label = driver.findElement(By.id("upload_label"));

0 commit comments

Comments
 (0)