Skip to content

Commit

Permalink
Update Selenium to v4.26.0 (#1816)
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 Oct 31, 2024
1 parent d814c75 commit c42c3a2
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.483</jenkins.version>
<selenium.version>4.25.0</selenium.version>
<selenium.version>4.26.0</selenium.version>
<!-- aligned with selenium -->
<guava.version>33.3.1-jre</guava.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.25.0", buildFirefoxOptions(testName));
cleaner, "selenium/standalone-firefox:4.26.0", buildFirefoxOptions(testName));
case "chrome-container":
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.25.0", new ChromeOptions());
return createContainerWebDriver(cleaner, "selenium/standalone-chrome:4.26.0", new ChromeOptions());
case "chrome":
Map<String, String> prefs = new HashMap<>();
prefs.put(LANGUAGE_SELECTOR, "en");
Expand Down

0 comments on commit c42c3a2

Please sign in to comment.