Skip to content

Commit 3f30714

Browse files
committed
Update Selenium 4.32.0 support CDP 136
1 parent 2277b5b commit 3f30714

File tree

4 files changed

+52
-25
lines changed

4 files changed

+52
-25
lines changed

.github/workflows/maven.yml

Lines changed: 45 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,52 @@
44
name: Run Maven with GitHub CI
55

66
on:
7-
push:
8-
branches: [ "main" ]
9-
pull_request:
10-
branches: [ "main" ]
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
1111

1212
jobs:
13-
build:
13+
build:
1414

15-
runs-on: windows-latest
15+
runs-on: windows-latest
1616

17-
steps:
18-
- uses: actions/checkout@v4
19-
with:
20-
submodules: recursive
21-
fetch-depth: 0
22-
- name: Set up JDK 17
23-
uses: actions/setup-java@v4
24-
with:
25-
distribution: 'corretto'
26-
java-version: '17'
27-
cache: maven
28-
- name: Build with Maven
29-
run: mvn clean test --file pom.xml
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
submodules: recursive
21+
fetch-depth: 0
22+
- name: Set up JDK 17
23+
uses: actions/setup-java@v4
24+
with:
25+
distribution: 'corretto'
26+
java-version: '17'
27+
cache: maven
28+
- name: Build with Maven
29+
run: mvn clean test allure:report --file pom.xml
30+
- name: Upload Extent Report
31+
if: always()
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: test-report
35+
path: exports/ExtentReports/ExtentReports.html
36+
37+
- name: Upload test videos
38+
if: always()
39+
uses: actions/upload-artifact@v4
40+
with:
41+
name: test-videos
42+
path: exports/ExportData/Videos
43+
44+
- name: Upload screenshots for tests
45+
if: always()
46+
uses: actions/upload-artifact@v4
47+
with:
48+
name: test-screenshots
49+
path: exports/ExportData/Images
50+
- name: Upload Allure Report
51+
if: always()
52+
uses: actions/upload-artifact@v4
53+
with:
54+
name: allure-report
55+
path: target/site/allure-maven-plugin/

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ test-output/
1111
*.mp4
1212
*.avi
1313
allure-report/
14+
.allure/

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2626
<java-compiler.version>17</java-compiler.version>
2727
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
28-
<selenium.version>4.31.0</selenium.version>
28+
<selenium.version>4.32.0</selenium.version>
2929
<testng.version>7.11.0</testng.version>
3030
<aspectjweaver.version>1.9.24</aspectjweaver.version>
3131
<ashot.version>1.5.4</ashot.version>
@@ -47,10 +47,10 @@
4747
<lombok.version>1.18.38</lombok.version>
4848
<javax.mail.version>1.6.2</javax.mail.version>
4949
<zip.version>1.17</zip.version>
50-
<jackson.version>2.19.0-rc2</jackson.version>
50+
<jackson.version>2.19.0</jackson.version>
5151
<java-telegram-bot-api.version>8.3.0</java-telegram-bot-api.version>
5252
<commons-lang3.version>3.17.0</commons-lang3.version>
53-
<mysql-connector-j.version>9.2.0</mysql-connector-j.version>
53+
<mysql-connector-j.version>9.3.0</mysql-connector-j.version>
5454
<json-path.version>2.9.0</json-path.version>
5555

5656
<!-- Suite XML path - CRM -->
@@ -463,9 +463,9 @@
463463
<artifactId>allure-maven</artifactId>
464464
<version>${allure-maven.version}</version>
465465
<configuration>
466-
<reportVersion>${allure-testng.version}</reportVersion>
466+
<reportVersion>2.34.0</reportVersion>
467467
<allureDownloadUrl>
468-
${allure.cmd.download.url}/${allure-testng.version}/allure-commandline-${allure-testng.version}.zip
468+
${allure.cmd.download.url}/2.34.0/allure-commandline-2.34.0.zip
469469
</allureDownloadUrl>
470470
</configuration>
471471
</plugin>
Submodule keywords updated 1 file

0 commit comments

Comments
 (0)