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 5183c8c commit ce0d02aCopy full SHA for ce0d02a
src/main/java/web/BaseWebMobileElement.java
@@ -28,7 +28,8 @@ public BaseWebMobileElement(WebDriver driver) {
28
.pollingEvery(10, TimeUnit.SECONDS)
29
.ignoring(NoSuchElementException.class)
30
.ignoring(TimeoutException.class)
31
- .ignoring(StaleElementReferenceException.class);
+ .ignoring(StaleElementReferenceException.class)
32
+ .ignoring(WebDriverException.class);
33
}
34
35
public BaseWebMobileElement(WebDriver driver, int timeOfWaiting) {
0 commit comments