Skip to content

Commit

Permalink
Update Selenium to v4.25.0 (#1726)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 23, 2024
1 parent a23ad46 commit 5040e21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<changelist>999999-SNAPSHOT</changelist>
<spotbugs.skip>true</spotbugs.skip>
<jenkins.version>2.477</jenkins.version>
<selenium.version>4.24.0</selenium.version>
<selenium.version>4.25.0</selenium.version>
<!-- aligned with selenium -->
<guava.version>33.3.0-jre</guava.version>
<maven.version>3.8.1</maven.version>
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
return new FirefoxDriver(service, buildFirefoxOptions(testName));
case "firefox-container":
return createContainerWebDriver(
cleaner, "selenium/standalone-firefox:4.24.0", buildFirefoxOptions(testName));
cleaner, "selenium/standalone-firefox:4.25.0", buildFirefoxOptions(testName));
case "chrome-container":
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.24.0", new ChromeOptions());
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.25.0", new ChromeOptions());
case "chrome":
Map<String, String> prefs = new HashMap<>();
prefs.put(LANGUAGE_SELECTOR, "en");
Expand Down

0 comments on commit 5040e21

Please sign in to comment.