Skip to content

Commit cc9f7e3

Browse files
authored
[java] Removing RemoteStatus as it was deprecated. (SeleniumHQ#15712)
* [java] Removing RemoteStatus as it was deprecated. Also ScreenshotException.getBase64EncodedScreenshot() * [py] Fixing FF context test for Python
1 parent 51083a8 commit cc9f7e3

File tree

3 files changed

+1
-93
lines changed

3 files changed

+1
-93
lines changed

java/src/org/openqa/selenium/remote/RemoteStatus.java

Lines changed: 0 additions & 88 deletions
This file was deleted.

java/src/org/openqa/selenium/remote/ScreenshotException.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,4 @@ public ScreenshotException(Throwable cause) {
3232
public ScreenshotException(String message, Throwable cause) {
3333
super(message, cause);
3434
}
35-
36-
@Deprecated(forRemoval = true)
37-
public String getBase64EncodedScreenshot() {
38-
return null;
39-
}
4035
}

py/test/selenium/webdriver/marionette/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
@pytest.fixture
2525
def options():
2626
options = FirefoxOptions()
27+
options.add_argument("-remote-allow-system-access")
2728
return options
2829

2930

0 commit comments

Comments
 (0)