File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/test/java/tests/applications/windowsApp Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 121
121
<dependency >
122
122
<groupId >com.google.guava</groupId >
123
123
<artifactId >guava</artifactId >
124
- <version >33.4.0 -jre</version >
124
+ <version >33.4.8 -jre</version >
125
125
</dependency >
126
126
<dependency >
127
127
<groupId >com.fasterxml.jackson.core</groupId >
131
131
<dependency >
132
132
<groupId >org.seleniumhq.selenium</groupId >
133
133
<artifactId >selenium-java</artifactId >
134
- <version >4.28.1 </version >
134
+ <version >4.33.0 </version >
135
135
</dependency >
136
136
<dependency >
137
137
<groupId >io.appium</groupId >
Original file line number Diff line number Diff line change 7
7
8
8
import java .net .URL ;
9
9
import java .time .Duration ;
10
- import java .util .concurrent .TimeUnit ;
11
10
12
11
public class WindowsApplication implements IApplication {
13
12
private long implicitWaitSeconds ;
@@ -34,7 +33,7 @@ public boolean isStarted() {
34
33
public void setImplicitWaitTimeout (Duration value ) {
35
34
long valueInSeconds = value .getSeconds ();
36
35
if (implicitWaitSeconds != valueInSeconds ){
37
- driver .manage ().timeouts ().implicitlyWait (value . toMillis (), TimeUnit . MILLISECONDS );
36
+ driver .manage ().timeouts ().implicitlyWait (value );
38
37
implicitWaitSeconds = valueInSeconds ;
39
38
}
40
39
}
You can’t perform that action at this time.
0 commit comments