Skip to content

Commit ddfc472

Browse files
committed
java: Deprecating RemoteWebDriver.getRemoteStatus method as useless
1 parent c8a30db commit ddfc472

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java

+4
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,10 @@ public void get(String url) {
306306
execute(DriverCommand.GET, ImmutableMap.of("url", url));
307307
}
308308

309+
/**
310+
* @deprecated The status command is not included in the WebDriver standard
311+
*/
312+
@Deprecated
309313
public RemoteStatus getRemoteStatus() {
310314
Response response = execute(DriverCommand.STATUS);
311315
return new RemoteStatus((Map<String, Object>) response.getValue());

0 commit comments

Comments
 (0)