Skip to content

Commit 8d1160b

Browse files
authored
HtmlUnitPlugin was missing a dependency context (#212)
1 parent 85b467e commit 8d1160b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/selenium2/java/com/nordstrom/automation/selenium/plugins/HtmlUnitPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public HtmlUnitPlugin() {
4141
"org.eclipse.jetty.websocket.client.WebSocketClient",
4242
"org.eclipse.jetty.util.IO", "org.eclipse.jetty.io.EndPoint",
4343
"org.eclipse.jetty.websocket.common.Parser",
44-
"org.eclipse.jetty.websocket.api.Session"};
44+
"org.eclipse.jetty.websocket.api.Session",
45+
"org.apache.commons.exec.Executor"};
4546

4647
private static final String WEB_ELEMENT_CLASS_NAME =
4748
"org.openqa.selenium.htmlunit.HtmlUnitWebElement";

src/selenium3/java/com/nordstrom/automation/selenium/plugins/HtmlUnitPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ public HtmlUnitPlugin() {
4343
"net.sourceforge.htmlunit.cyberneko.filters.DefaultFilter",
4444
"org.apache.xmlcommons.Version", "com.gargoylesoftware.css.util.LangUtils",
4545
"org.apache.commons.net.io.Util", "org.eclipse.jetty.client.Origin",
46-
"org.eclipse.jetty.http.Syntax", "org.brotli.dec.Utils"};
46+
"org.eclipse.jetty.http.Syntax", "org.brotli.dec.Utils",
47+
"org.apache.commons.exec.Executor"};
4748

4849
private static final String WEB_ELEMENT_CLASS_NAME =
4950
"org.openqa.selenium.htmlunit.HtmlUnitWebElement";

0 commit comments

Comments
 (0)