From 70606e319e5373d9c82b23afa5e0e5cf0a146a79 Mon Sep 17 00:00:00 2001 From: Jimmy Axenhus Date: Mon, 28 Apr 2025 16:28:27 +0200 Subject: [PATCH] Correct the name of the Selenium WebDriver artifact The selenium-htmlunit3-driver artifact does not exist. Signed-off-by: Jimmy Axenhus --- .../modules/ROOT/pages/testing/mockmvc/htmlunit/webdriver.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/testing/mockmvc/htmlunit/webdriver.adoc b/framework-docs/modules/ROOT/pages/testing/mockmvc/htmlunit/webdriver.adoc index 175af0f55eec..d3a8df109d38 100644 --- a/framework-docs/modules/ROOT/pages/testing/mockmvc/htmlunit/webdriver.adoc +++ b/framework-docs/modules/ROOT/pages/testing/mockmvc/htmlunit/webdriver.adoc @@ -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: