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 6
6
7
7
<groupId >net.itarray</groupId >
8
8
<artifactId >automotion</artifactId >
9
- <version >1.2.0 </version >
9
+ <version >1.2.1 </version >
10
10
<name >Automotion</name >
11
11
<description >Library for automation testing</description >
12
12
<url >https://www.itarray.net</url >
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ public BaseWebMobileElement(WebDriver driver) {
27
27
.withTimeout (timeOfWaiting , TimeUnit .SECONDS )
28
28
.pollingEvery (10 , TimeUnit .SECONDS )
29
29
.ignoring (NoSuchElementException .class )
30
- .ignoring (TimeoutException .class );
30
+ .ignoring (TimeoutException .class )
31
+ .ignoring (StaleElementReferenceException .class );
31
32
}
32
33
33
34
public BaseWebMobileElement (WebDriver driver , int timeOfWaiting ) {
You can’t perform that action at this time.
0 commit comments