Skip to content

Commit 4dcec7b

Browse files
authored
Update to Selenium 4.27.0 +semver:feature (#148)
1 parent 974cf90 commit 4dcec7b

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>com.github.aquality-automation</groupId>
8484
<artifactId>aquality-selenium-core</artifactId>
85-
<version>4.2.0</version>
85+
<version>4.3.0</version>
8686
</dependency>
8787
<dependency>
8888
<groupId>org.apache.commons</groupId>
@@ -92,7 +92,7 @@
9292
<dependency>
9393
<groupId>com.fasterxml.jackson.core</groupId>
9494
<artifactId>jackson-databind</artifactId>
95-
<version>2.18.0</version>
95+
<version>2.18.2</version>
9696
</dependency>
9797
<dependency>
9898
<groupId>org.slf4j</groupId>
@@ -119,7 +119,7 @@
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
121121
<artifactId>maven-compiler-plugin</artifactId>
122-
<version>3.12.1</version>
122+
<version>3.13.0</version>
123123
<configuration>
124124
<source>11</source>
125125
<target>11</target>
@@ -128,7 +128,7 @@
128128
<plugin>
129129
<groupId>org.jacoco</groupId>
130130
<artifactId>jacoco-maven-plugin</artifactId>
131-
<version>0.8.11</version>
131+
<version>0.8.12</version>
132132
<executions>
133133
<execution>
134134
<id>pre-unit-test</id>
@@ -156,7 +156,7 @@
156156
<plugin>
157157
<groupId>org.apache.maven.plugins</groupId>
158158
<artifactId>maven-surefire-plugin</artifactId>
159-
<version>3.2.5</version>
159+
<version>3.5.2</version>
160160
<configuration>
161161
<argLine>${surefireArgLine} -Dfile.encoding=UTF-8</argLine>
162162
<reuseForks>false</reuseForks>
@@ -185,7 +185,7 @@
185185
<plugin>
186186
<groupId>org.apache.maven.plugins</groupId>
187187
<artifactId>maven-source-plugin</artifactId>
188-
<version>3.3.0</version>
188+
<version>3.3.1</version>
189189
<executions>
190190
<execution>
191191
<id>attach-sources</id>
@@ -198,7 +198,7 @@
198198
<plugin>
199199
<groupId>org.apache.maven.plugins</groupId>
200200
<artifactId>maven-javadoc-plugin</artifactId>
201-
<version>3.6.3</version>
201+
<version>3.11.1</version>
202202
<configuration>
203203
<source>11</source>
204204
</configuration>
@@ -214,7 +214,7 @@
214214
<plugin>
215215
<groupId>org.apache.maven.plugins</groupId>
216216
<artifactId>maven-gpg-plugin</artifactId>
217-
<version>3.1.0</version>
217+
<version>3.2.7</version>
218218
<executions>
219219
<execution>
220220
<id>sign-artifacts</id>
@@ -234,7 +234,7 @@
234234
<plugin>
235235
<groupId>org.sonatype.plugins</groupId>
236236
<artifactId>nexus-staging-maven-plugin</artifactId>
237-
<version>1.6.13</version>
237+
<version>1.7.0</version>
238238
<extensions>true</extensions>
239239
<configuration>
240240
<serverId>ossrh</serverId>

src/test/java/tests/usecases/devtools/DeviceEmulationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import aquality.selenium.browser.AqualityServices;
44
import aquality.selenium.browser.devtools.EmulationHandling;
55
import com.google.common.collect.ImmutableMap;
6-
import org.openqa.selenium.devtools.v129.emulation.Emulation;
7-
import org.openqa.selenium.devtools.v129.emulation.model.DisplayFeature;
6+
import org.openqa.selenium.devtools.v131.emulation.Emulation;
7+
import org.openqa.selenium.devtools.v131.emulation.model.DisplayFeature;
88
import org.testng.Assert;
99
import org.testng.annotations.BeforeMethod;
1010
import org.testng.annotations.Test;

src/test/java/tests/usecases/devtools/NetworkSpeedEmulationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import aquality.selenium.browser.AqualityServices;
44
import org.openqa.selenium.TimeoutException;
5-
import org.openqa.selenium.devtools.v129.network.model.ConnectionType;
5+
import org.openqa.selenium.devtools.v131.network.model.ConnectionType;
66
import org.testng.Assert;
77
import org.testng.annotations.Test;
88
import tests.BaseTest;

src/test/java/tests/usecases/devtools/OverrideUserAgentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import manytools.BrowserLanguageForm;
99
import manytools.UserAgentForm;
1010
import org.openqa.selenium.devtools.idealized.Network;
11-
import org.openqa.selenium.devtools.v129.emulation.Emulation;
11+
import org.openqa.selenium.devtools.v131.emulation.Emulation;
1212
import org.testng.Assert;
1313
import org.testng.annotations.BeforeMethod;
1414
import org.testng.annotations.Test;

0 commit comments

Comments
 (0)