We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a30db commit ddfc472Copy full SHA for ddfc472
java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java
@@ -306,6 +306,10 @@ public void get(String url) {
306
execute(DriverCommand.GET, ImmutableMap.of("url", url));
307
}
308
309
+ /**
310
+ * @deprecated The status command is not included in the WebDriver standard
311
+ */
312
+ @Deprecated
313
public RemoteStatus getRemoteStatus() {
314
Response response = execute(DriverCommand.STATUS);
315
return new RemoteStatus((Map<String, Object>) response.getValue());
0 commit comments