File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
src/test/java/dev/selenium Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 12
12
<dependency >
13
13
<groupId >org.seleniumhq.selenium</groupId >
14
14
<artifactId >selenium-java</artifactId >
15
- <version >4.2.2 </version >
15
+ <version >4.3.0 </version >
16
16
</dependency >
17
17
<dependency >
18
18
<groupId >org.junit.jupiter</groupId >
23
23
<dependency >
24
24
<groupId >io.github.bonigarcia</groupId >
25
25
<artifactId >webdrivermanager</artifactId >
26
- <version >5.1 .0</version >
26
+ <version >5.2 .0</version >
27
27
<scope >test</scope >
28
28
</dependency >
29
29
</dependencies >
30
30
31
31
<properties >
32
32
<maven .compiler.source>8</maven .compiler.source>
33
33
<maven .compiler.target>8</maven .compiler.target>
34
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
35
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
34
36
</properties >
35
37
36
38
<build >
47
49
</plugin >
48
50
</plugins >
49
51
</build >
50
- </project >
52
+ </project >
Original file line number Diff line number Diff line change 9
9
public class BaseTest {
10
10
public WebDriver driver ;
11
11
12
- @ BeforeAll static void setDriver () {
12
+ @ BeforeAll
13
+ public static void setDriver () {
13
14
WebDriverManager .chromedriver ().setup ();
14
15
}
15
16
You can’t perform that action at this time.
0 commit comments