Skip to content

Commit e2e1d77

Browse files
committed
Adding a lost InternetExplorerDriver constructor
1 parent f8bc310 commit e2e1d77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

java/client/src/org/openqa/selenium/ie/InternetExplorerDriver.java

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ public InternetExplorerDriver(Capabilities capabilities) {
160160
this(null, capabilities, DEFAULT_PORT);
161161
}
162162

163+
public InternetExplorerDriver(InternetExplorerOptions options) {
164+
this(null, options);
165+
}
166+
163167
/**
164168
* @deprecated Create an {@link InternetExplorerDriverService} and then use that to create a
165169
* {@link RemoteWebDriver#RemoteWebDriver(org.openqa.selenium.remote.CommandExecutor, Capabilities)} with a

0 commit comments

Comments
 (0)