Skip to content

Commit

Permalink
Merge branch 'master' into add-oic-auth-e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
fcojfernandez committed Sep 2, 2024
2 parents 984124f + fda9804 commit 7e52a88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<changelist>999999-SNAPSHOT</changelist>
<spotbugs.skip>true</spotbugs.skip>
<jenkins.version>2.474</jenkins.version>
<selenium.version>4.23.1</selenium.version>
<selenium.version>4.24.0</selenium.version>
<guava.version>33.3.0-jre</guava.version> <!-- aligned with selenium -->
<maven.version>3.8.1</maven.version>
<maven-resolver.version>1.6.2</maven-resolver.version>
Expand Down Expand Up @@ -168,7 +168,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.16.0</version>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -371,7 +371,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.15.0</version>
<version>1.15.1</version>
</dependency>
<!-- RequireUpperBoundDeps between jersey (via GitLab API) and browserup -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ private WebDriver createWebDriver(TestCleaner cleaner, TestName testName) throws
GeckoDriverService service = builder.build();
return new FirefoxDriver(service, buildFirefoxOptions(testName));
case "firefox-container":
return createContainerWebDriver(cleaner, "selenium/standalone-firefox:4.23.1", buildFirefoxOptions(testName));
return createContainerWebDriver(cleaner, "selenium/standalone-firefox:4.24.0", buildFirefoxOptions(testName));
case "chrome-container":
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.23.1", new ChromeOptions());
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.24.0", new ChromeOptions());
case "chrome":
Map<String, String> prefs = new HashMap<String, String>();
prefs.put(LANGUAGE_SELECTOR, "en");
Expand Down

0 comments on commit 7e52a88

Please sign in to comment.