File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 66
77 <groupId >net.itarray</groupId >
88 <artifactId >automotion</artifactId >
9- <version >1.2.0 </version >
9+ <version >1.2.1 </version >
1010 <name >Automotion</name >
1111 <description >Library for automation testing</description >
1212 <url >https://www.itarray.net</url >
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ public BaseWebMobileElement(WebDriver driver) {
2727 .withTimeout (timeOfWaiting , TimeUnit .SECONDS )
2828 .pollingEvery (10 , TimeUnit .SECONDS )
2929 .ignoring (NoSuchElementException .class )
30- .ignoring (TimeoutException .class );
30+ .ignoring (TimeoutException .class )
31+ .ignoring (StaleElementReferenceException .class );
3132 }
3233
3334 public BaseWebMobileElement (WebDriver driver , int timeOfWaiting ) {
You can’t perform that action at this time.
0 commit comments