Skip to content

Commit 650a1ab

Browse files
committed
Add Edge as a possible driver
Because, well, why not?
1 parent ed15c6c commit 650a1ab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

java/client/test/org/openqa/selenium/testing/Driver.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
public enum Driver {
2121
ALL,
2222
CHROME,
23+
EDGE,
2324
HTMLUNIT,
2425
FIREFOX,
2526
IE,

java/client/test/org/openqa/selenium/testing/drivers/TestIgnorance.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import static org.openqa.selenium.Platform.WINDOWS;
2323
import static org.openqa.selenium.testing.Driver.ALL;
2424
import static org.openqa.selenium.testing.Driver.CHROME;
25+
import static org.openqa.selenium.testing.Driver.EDGE;
2526
import static org.openqa.selenium.testing.Driver.FIREFOX;
2627
import static org.openqa.selenium.testing.Driver.HTMLUNIT;
2728
import static org.openqa.selenium.testing.Driver.IE;
@@ -180,9 +181,8 @@ private void addIgnoresForBrowser(Browser browser, IgnoreComparator comparator)
180181
comparator.addDriver(CHROME);
181182
break;
182183

183-
// TODO(simon): Get the build working again
184184
case edge:
185-
comparator.addDriver(IE);
185+
comparator.addDriver(EDGE);
186186
break;
187187

188188
case ff:

0 commit comments

Comments
 (0)