Skip to content

Commit

Permalink
working on chrome 133
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Feb 6, 2025
1 parent 7b5931e commit 969bd4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/htmlunit/BrowserVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ public final class BrowserVersion implements Serializable {
public static final BrowserVersion FIREFOX_ESR = new BrowserVersion(FIREFOX_ESR_NUMERIC, "FF-ESR");

/** Latest Edge. */
public static final BrowserVersion EDGE = new BrowserVersion(132, "Edge");
public static final BrowserVersion EDGE = new BrowserVersion(133, "Edge");

/** Latest Chrome. */
public static final BrowserVersion CHROME = new BrowserVersion(132, "Chrome");
public static final BrowserVersion CHROME = new BrowserVersion(133, "Chrome");

/**
* Array with all supported browsers.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/htmlunit/BrowserVersionFeaturesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @author Ronald Brill
* @author Frank Danek
*/
public class BrowserVersionFeaturesTest {
public class BrowserVersionFeaturesTest {

/**
* Test of alphabetical order.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/htmlunit/ExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ExternalTest {
static String MAVEN_REPO_URL_ = "https://repo1.maven.org/maven2/";

/** Chrome driver. */
static String CHROME_DRIVER_ = "132.0.6834";
static String CHROME_DRIVER_ = "133.0.6943";
static String CHROME_DRIVER_URL_ =
"https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json";

Expand Down

0 comments on commit 969bd4f

Please sign in to comment.