File tree 1 file changed +14
-0
lines changed
java/client/src/org/openqa/selenium/ie
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,10 @@ public InternetExplorerDriver() {
152
152
this (null , null , DEFAULT_PORT );
153
153
}
154
154
155
+ /**
156
+ * @deprecated Use {@link InternetExplorerDriver(InternetExplorerOptions)}
157
+ */
158
+ @ Deprecated
155
159
public InternetExplorerDriver (Capabilities capabilities ) {
156
160
this (null , capabilities , DEFAULT_PORT );
157
161
}
@@ -170,10 +174,20 @@ public InternetExplorerDriver(InternetExplorerDriverService service) {
170
174
this (service , null , DEFAULT_PORT );
171
175
}
172
176
177
+ /**
178
+ * @deprecated Use {@link InternetExplorerDriver(InternetExplorerDriverService, InternetExplorerOptions)}
179
+ */
180
+ @ Deprecated
173
181
public InternetExplorerDriver (InternetExplorerDriverService service , Capabilities capabilities ) {
174
182
this (service , capabilities , DEFAULT_PORT );
175
183
}
176
184
185
+ public InternetExplorerDriver (
186
+ InternetExplorerDriverService service ,
187
+ InternetExplorerOptions options ) {
188
+ this (service , options , DEFAULT_PORT );
189
+ }
190
+
177
191
/**
178
192
* @deprecated Create an {@link InternetExplorerDriverService} and then use that to create a
179
193
* {@link RemoteWebDriver#RemoteWebDriver(org.openqa.selenium.remote.CommandExecutor, Capabilities)} with a
You can’t perform that action at this time.
0 commit comments