Correct the name of the Selenium WebDriver artifact

The selenium-htmlunit3-driver artifact does not exist.

Signed-off-by: Jimmy Axenhus <github@axenhus.com>
This commit is contained in:
Jimmy Axenhus 2025-04-28 16:28:27 +02:00 committed by GitHub
parent bb513de224
commit 70606e319e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ following sections to make this pattern much easier to implement.
== MockMvc and WebDriver Setup
To use Selenium WebDriver with `MockMvc`, make sure that your project includes a test
dependency on `org.seleniumhq.selenium:selenium-htmlunit3-driver`.
dependency on `org.seleniumhq.selenium:htmlunit3-driver`.
We can easily create a Selenium WebDriver that integrates with MockMvc by using the
`MockMvcHtmlUnitDriverBuilder` as the following example shows: