Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/io/appium/java_client/AppiumDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@
);
executor.setCommandCodec(new AppiumW3CHttpCommandCodec());
executor.setResponseCodec(new W3CHttpResponseCodec());
executor.refreshAdditionalCommands();
setCommandExecutor(executor);
this.executeMethod = new AppiumExecutionMethod(this);
super.setErrorHandler(ERROR_HANDLER);
Expand Down Expand Up @@ -265,13 +266,13 @@
}

@Override
public Optional<BiDi> maybeGetBiDi() {

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 17 build (snapshot)

[removal] maybeGetBiDi() in RemoteWebDriver has been deprecated and marked for removal

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 17 build (snapshot)

[removal] maybeGetBiDi() in HasBiDi has been deprecated and marked for removal

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 25 build (snapshot)

[removal] maybeGetBiDi() in RemoteWebDriver has been deprecated and marked for removal

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 25 build (snapshot)

[removal] maybeGetBiDi() in HasBiDi has been deprecated and marked for removal

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 21 build (snapshot)

[removal] maybeGetBiDi() in RemoteWebDriver has been deprecated and marked for removal

Check warning on line 269 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 21 build (snapshot)

[removal] maybeGetBiDi() in HasBiDi has been deprecated and marked for removal
return Optional.ofNullable(this.biDi);
}

@Override
@NonNull
public BiDi getBiDi() {

Check warning on line 275 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 17 build (snapshot)

[removal] getBiDi() in HasBiDi has been deprecated and marked for removal

Check warning on line 275 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 25 build (snapshot)

[removal] getBiDi() in HasBiDi has been deprecated and marked for removal

Check warning on line 275 in src/main/java/io/appium/java_client/AppiumDriver.java

View workflow job for this annotation

GitHub Actions / JDK 21 build (snapshot)

[removal] getBiDi() in HasBiDi has been deprecated and marked for removal
var webSocketUrl = ((BaseOptions<?>) this.capabilities).getWebSocketUrl().orElseThrow(
() -> {
var suffix = wasBiDiRequested
Expand Down
Loading