Skip to content

Commit 0bb9c41

Browse files
authored
Update Selenium to 4.27.0 +semver:feature (#98)
1 parent 0584a5e commit 0bb9c41

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

pom.xml

+11-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<revision>4.0.0-SNAPSHOT</revision>
20-
<log4j.version>2.24.0</log4j.version>
20+
<log4j.version>2.24.2</log4j.version>
2121
</properties>
2222

2323
<distributionManagement>
@@ -121,17 +121,17 @@
121121
<dependency>
122122
<groupId>com.google.guava</groupId>
123123
<artifactId>guava</artifactId>
124-
<version>33.3.0-jre</version>
124+
<version>33.3.1-jre</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>com.fasterxml.jackson.core</groupId>
128128
<artifactId>jackson-databind</artifactId>
129-
<version>2.18.0</version>
129+
<version>2.18.2</version>
130130
</dependency>
131131
<dependency>
132132
<groupId>org.seleniumhq.selenium</groupId>
133133
<artifactId>selenium-java</artifactId>
134-
<version>4.25.0</version>
134+
<version>4.27.0</version>
135135
</dependency>
136136
<dependency>
137137
<groupId>io.appium</groupId>
@@ -152,7 +152,7 @@
152152
<plugin>
153153
<groupId>org.apache.maven.plugins</groupId>
154154
<artifactId>maven-compiler-plugin</artifactId>
155-
<version>3.12.1</version>
155+
<version>3.13.0</version>
156156
<configuration>
157157
<source>11</source>
158158
<target>11</target>
@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.jacoco</groupId>
163163
<artifactId>jacoco-maven-plugin</artifactId>
164-
<version>0.8.11</version>
164+
<version>0.8.12</version>
165165
<executions>
166166
<execution>
167167
<id>pre-unit-test</id>
@@ -189,7 +189,7 @@
189189
<plugin>
190190
<groupId>org.apache.maven.plugins</groupId>
191191
<artifactId>maven-surefire-plugin</artifactId>
192-
<version>3.2.5</version>
192+
<version>3.5.2</version>
193193
<configuration>
194194
<argLine>${surefireArgLine} -Dfile.encoding=UTF-8</argLine>
195195
<reuseForks>false</reuseForks>
@@ -218,7 +218,7 @@
218218
<plugin>
219219
<groupId>org.apache.maven.plugins</groupId>
220220
<artifactId>maven-source-plugin</artifactId>
221-
<version>3.3.0</version>
221+
<version>3.3.1</version>
222222
<executions>
223223
<execution>
224224
<id>attach-sources</id>
@@ -231,7 +231,7 @@
231231
<plugin>
232232
<groupId>org.apache.maven.plugins</groupId>
233233
<artifactId>maven-javadoc-plugin</artifactId>
234-
<version>3.6.3</version>
234+
<version>3.11.1</version>
235235
<configuration>
236236
<source>11</source>
237237
</configuration>
@@ -247,7 +247,7 @@
247247
<plugin>
248248
<groupId>org.apache.maven.plugins</groupId>
249249
<artifactId>maven-gpg-plugin</artifactId>
250-
<version>3.1.0</version>
250+
<version>3.2.7</version>
251251
<executions>
252252
<execution>
253253
<id>sign-artifacts</id>
@@ -267,7 +267,7 @@
267267
<plugin>
268268
<groupId>org.sonatype.plugins</groupId>
269269
<artifactId>nexus-staging-maven-plugin</artifactId>
270-
<version>1.6.13</version>
270+
<version>1.7.0</version>
271271
<extensions>true</extensions>
272272
<configuration>
273273
<serverId>ossrh</serverId>

src/test/java/tests/visualization/FormDumpTests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,8 @@ public void shouldBePossibleToCompareWithDumpWithCustomNameWhenDifferenceIsZero(
6767
public void shouldBePossibleToCompareWithDumpWithCustomNameWhenDifferenceIsNotZero()
6868
{
6969
HoversForm form = new HoversForm();
70-
form.hoverAvatar();
7170
form.dump().save("Non-zero diff");
72-
AqualityServices.getApplication().getDriver().navigate().refresh();
71+
form.hoverAvatar();
7372
form.waitUntilPresent();
7473
Assert.assertTrue(form.dump().compare("Non-zero diff") > 0, "Difference with current page should be greater than zero");
7574
}

0 commit comments

Comments
 (0)