Skip to content

Commit

Permalink
4.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jul 28, 2024
1 parent 66db05e commit a8cf411
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,19 @@ HtmlUnit offers many customization options.
Similar to the other WebDriver's the class HtmlUnitDriverOptions can be used to customize your HtmlUnit driver.

```java
final HtmlUnitDriverOptions driverOptions = new HtmlUnitDriverOptions(BrowserVersion.FIREFOX);
final HtmlUnitDriverOptions driverOptions = new HtmlUnitDriverOptions(BrowserVersion.FIREFOX);

// configure e.g.
driverOptions.setCapability(HtmlUnitOption.optThrowExceptionOnScriptError, false);
// configure e.g.
driverOptions.setCapability(HtmlUnitOption.optThrowExceptionOnScriptError, false);

HtmlUnitDriver webDriver = new HtmlUnitDriver(driverOptions);
// use the driver
HtmlUnitDriver webDriver = new HtmlUnitDriver(driverOptions);
// use the driver
```

Please check the

### Selenium compatibility

Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.23.0
is for Selenium 4.23.0.

An overview of the different versions, the HtmlUnit version used in each case and the compatibility
can be found in these [tables](compatibility.md).

Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.23.0-SNAPSHOT</version>
<version>4.23.0</version>

<name>${project.artifactId}</name>
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
Expand All @@ -18,15 +18,15 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<selenium.version>4.22.0</selenium.version>
<htmlunit.version>4.4.0-SNAPSHOT</htmlunit.version>
<selenium.version>4.23.0</selenium.version>
<htmlunit.version>4.4.0</htmlunit.version>

<jetty.version>9.4.55.v20240627</jetty.version>

<checkstyle.version>10.17.0</checkstyle.version>
<spotbugs.version>4.8.6</spotbugs.version>
<archunit.version>1.3.0</archunit.version>
<dependencycheck.version>10.0.2</dependencycheck.version>
<dependencycheck.version>10.0.3</dependencycheck.version>
</properties>

<licenses>
Expand Down Expand Up @@ -215,7 +215,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.6.1</version>
<version>4.8.6.2</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -244,7 +244,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<quiet>true</quiet>
<detectLinks>true</detectLinks>
Expand All @@ -261,7 +261,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<configuration>
<includes>
<include>**/*.java</include>
Expand Down

0 comments on commit a8cf411

Please sign in to comment.