Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Aug 22, 2023
1 parent 07b3bdd commit eaefee8
Show file tree
Hide file tree
Showing 2 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 @@ -104,10 +104,10 @@ public final class BrowserVersion implements Serializable {
public static final BrowserVersion INTERNET_EXPLORER = new BrowserVersion(11, "IE");

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

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

/**
* Array with all supported browsers.
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/htmlunit/ExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public class ExternalTest {
static String MAVEN_REPO_URL_ = "https://repo1.maven.org/maven2/";

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

static String EDGE_DRIVER_ = "115.0.1901.188";
static String EDGE_DRIVER_ = "116.0.1938.54";
static String EDGE_DRIVER_URL_ = "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/";

/** Gecko driver. */
Expand Down

0 comments on commit eaefee8

Please sign in to comment.