We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SeleniumHQ
Learn more about funding links in repositories.
Report abuse
1 parent 7b21467 commit 29bf67eCopy full SHA for 29bf67e
java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java
@@ -306,15 +306,6 @@ 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());
316
- }
317
-
318
public String getTitle() {
319
Response response = execute(DriverCommand.GET_TITLE);
320
Object value = response.getValue();
0 commit comments