You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atlas didn't check current browser url, and if. it's different with base It call webdriver.get().
I think that more correct will be this code:
Optional.of(requestURL)
.filter(it -> !it.equals(baseURI + DEFAULT_PATH))
.filter(it -> !it.equals(wrapsDriver.getWrappedDriver().getCurrentUrl())
.ifPresent(url -> wrapsDriver.getWrappedDriver().get(requestURL));
java.lang.AssertionError:
Expected: element text is "a"
but: text is ""
Expected :a
Actual :
Actual results:
onSearchPage() method implicitly calls open()
Expected results:
onSearchPage() method doesn't invoke open
Workaround is to save Page and work with it
Please find the code from example below
test.zip
The text was updated successfully, but these errors were encountered: