We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1098a99 commit 85b0560Copy full SHA for 85b0560
src/main/java/org/openqa/selenium/htmlunit/HtmlUnitDriver.java
@@ -1712,14 +1712,14 @@ protected <X> X implicitlyWaitFor(Callable<X> condition) {
1712
return null;
1713
}
1714
1715
- protected WebClient getWebClient() {
+ public WebClient getWebClient() {
1716
if (webClient == null) {
1717
throw new NoSuchSessionException("Session is closed");
1718
1719
return webClient;
1720
1721
1722
- protected WebWindow getCurrentWindow() {
+ public WebWindow getCurrentWindow() {
1723
if (currentWindow == null || currentWindow.isClosed()) {
1724
throw new NoSuchWindowException("Window is closed");
1725
0 commit comments