We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8225b28 commit e4f334eCopy full SHA for e4f334e
java/src/org/openqa/selenium/firefox/FirefoxDriver.java
@@ -260,6 +260,10 @@ public void setContext(FirefoxCommandContext commandContext) {
260
context.setContext(commandContext);
261
}
262
263
+ /**
264
+ * @deprecated Use W3C-compliant BiDi protocol. Use {{@link #maybeGetBiDi()}}
265
+ */
266
+ @Deprecated
267
@Override
268
public Optional<DevTools> maybeGetDevTools() {
269
if (devTools != null) {
@@ -284,6 +288,9 @@ public Optional<DevTools> maybeGetDevTools() {
284
288
return Optional.of(devTools);
285
289
286
290
291
292
+ * @deprecated Use W3C-compliant BiDi protocol. Use {{@link #getBiDi()}}
293
287
294
295
public DevTools getDevTools() {
296
if (!cdpUri.isPresent()) {
0 commit comments