Skip to content

Commit

Permalink
MCR-3134 update to Selenium 4.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yagee-de committed Aug 13, 2024
1 parent 01281ee commit d464249
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 0 additions & 4 deletions mir-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,6 @@
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.mycore.mir.it.tests;

import java.io.IOException;
import java.time.Duration;
import java.util.AbstractMap;
import java.util.List;
import java.util.stream.Collectors;
Expand Down Expand Up @@ -67,7 +68,7 @@ public void testFullDocument() throws IOException, SolrServerException, Interrup
waitForIndexVersionChange(Core.main, beforeVersion); //document in index
simpleSearchController.simpleSearchBy(MIRTestData.TITLE, null, null, null, null);
String noDocumentsFoundText = "Keine Dokumente gefunden";
WebDriverWait wait = new WebDriverWait(driver, 1);
WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(1));
wait.until((driver) -> {
try {
driver.findElement(MCRBy.partialText(noDocumentsFoundText));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<maven.compiler.arg>-Werror</maven.compiler.arg>
<mycore.version>2024.06.0-SNAPSHOT</mycore.version>
<pmd.version>7.0.0</pmd.version>
<selenium.version>4.3.0</selenium.version>
<selenium.version>4.23.0</selenium.version>
<site.suffix />
<solr-runner.solrVersionString>9.6.1</solr-runner.solrVersionString>
<sortpom.sortDeps>scope,groupId,artifactId</sortpom.sortDeps>
Expand Down

0 comments on commit d464249

Please sign in to comment.