Skip to content

Commit

Permalink
version 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Apr 25, 2023
1 parent 168df0f commit 338bf27
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,33 @@ There are two versions available

### Selenium compatibility

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

Because there are so many tools working on top HtmlUnitDriver, we now maintain two version (artifact id's).

**htmlunit3-driver** uses the (latest) version of HtmlUnit 3.x and is therefore not backward compatible.

**htmlunit-driver** is backward compatible but it still is based on HtmlUnit 2.70.

For an overview please check the following table:
For an overview please check the following tables:

***htmlunit3-driver***

| selenium | htmlunit-driver | htmlunit | artifactId |
|----------|-----------------|-----------------|------------------|
| 4.8.3 | **4.8.3** | 3.1.0 | htmlunit3-driver |
| 4.9.0 | **4.9.0** | 3.1.0 | htmlunit3-driver |
| 4.8.3 | 4.8.3 | 3.1.0 | htmlunit3-driver |
| 4.8.1 | 4.8.1 | 3.0.0 | htmlunit3-driver |


***htmlunit-driver***

| selenium | htmlunit-driver | htmlunit | artifactId |
|----------|-----------------|-----------------|------------------|
| 4.9.0 | **4.9.0** | 2.70.0 | htmlunit-driver |
| | | | |
| 4.8.3 | **4.8.3** | 2.70.0 | htmlunit-driver |
| 4.8.3 | 4.8.3 | 2.70.0 | htmlunit-driver |
| 4.8.1 | 4.8.1.1 | 2.70.0 | htmlunit-driver |
| 4.8.1 | 4.8.1 | 3.0.0 | htmlunit-driver |
| 4.8.0 | 4.8.0 | 2.70.0 | htmlunit-driver |
Expand Down Expand Up @@ -71,14 +81,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.8.3</version>
<version>4.9.0</version>
</dependency>
```

Add to your `build.gradle`:

```groovy
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.8.3'
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.9.0'
```


Expand Down
4 changes: 2 additions & 2 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.8.3</version>
<version>4.9.0</version>

<name>htmlunit-driver</name>
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
Expand All @@ -18,7 +18,7 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<selenium.version>4.8.3</selenium.version>
<selenium.version>4.9.0</selenium.version>
<htmlunit.version>3.1.0</htmlunit.version>

<jetty.version>9.4.51.v20230217</jetty.version>
Expand Down

0 comments on commit 338bf27

Please sign in to comment.