File tree Expand file tree Collapse file tree 2 files changed +3
-15
lines changed
test/org/openqa/selenium/ie Expand file tree Collapse file tree 2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -33,18 +33,6 @@ public class AcceptedW3CCapabilityKeys implements Predicate<String> {
33
33
"^proxy$" ,
34
34
"^setWindowRect$" ,
35
35
"^strictFileInteractability$" ,
36
- // TODO: Needs to be removed when ChromeDriver issue is resolved. Not a W3C capability
37
- // https://bugs.chromium.org/p/chromedriver/issues/detail?id=4129
38
- "^networkConnectionEnabled$" ,
39
- // TODO: Needs to be removed when ChromeDriver issue is resolved. Not a W3C capability
40
- // https://bugs.chromium.org/p/chromedriver/issues/detail?id=4129
41
- "^chrome$" ,
42
- // TODO: Needs to be removed when MSEdgeDriver issue is resolved. Not a W3C capability
43
- // https://github.com/MicrosoftEdge/EdgeWebDriver/issues/23
44
- "^msedge$" ,
45
- // TODO: Needs to be removed when GeckoDriver issue is resolved. Not a W3C capability
46
- // https://github.com/mozilla/geckodriver/issues/2023
47
- "^platformVersion$" ,
48
36
"^timeouts$" ,
49
37
"^unhandledPromptBehavior$" ,
50
38
"^webSocketUrl$" ) // from webdriver-bidi
Original file line number Diff line number Diff line change 41
41
public class InternetExplorerDriverTest extends JUnit4TestBase {
42
42
43
43
@ Test
44
- public void builderGeneratesDefaultChromeOptions () {
44
+ public void builderGeneratesDefaultIEOptions () {
45
45
WebDriver driver = InternetExplorerDriver .builder ().build ();
46
46
driver .quit ();
47
47
}
48
48
49
49
@ Test
50
- public void builderOverridesDefaultChromeOptions () {
50
+ public void builderOverridesDefaultIEOptions () {
51
51
InternetExplorerOptions options = new InternetExplorerOptions ();
52
52
options .setImplicitWaitTimeout (Duration .ofMillis (1 ));
53
53
WebDriver driver = InternetExplorerDriver .builder ().oneOf (options ).build ();
@@ -57,7 +57,7 @@ public void builderOverridesDefaultChromeOptions() {
57
57
}
58
58
59
59
@ Test
60
- public void builderWithClientConfigthrowsException () {
60
+ public void builderWithClientConfigThrowsException () {
61
61
ClientConfig clientConfig = ClientConfig .defaultConfig ().readTimeout (Duration .ofMinutes (1 ));
62
62
RemoteWebDriverBuilder builder = InternetExplorerDriver .builder ().config (clientConfig );
63
63
You can’t perform that action at this time.
0 commit comments