2

我正在尝试在 Eclipse 中使用 HTMLunitdriver。

我已经写了

WebDriver driver = new HtmlUnitDriver();

所有 jar 文件都添加到构建路径中,但我收到错误“HTMLunit 驱动程序无法解析为类型”。

任何人都可以对此提供任何指示吗?

4

1 回答 1

5

嗨,arjun,请降级到 2.52,它肯定会起作用,我也知道它为什么不起作用

HtmlUnitDriver was a part of Selenium main distribution package prior to Selenium version
2.53. If you are using Selenium 2.52 or earlier you don't need to download and install 
HtmlUnitDriver, it is already there.

According to Selenium evolution strategy drivers should be separated from Selenium, 
and a driver release cycle should be synchronized with the target browser release cycle 
instead of Selenium release cycle. So this happened to HtmlUnitDriver too. It's not a part 
of the main Selenium distribution since version 2.53.

请通过链接获取更多信息 https://github.com/SeleniumHQ/htmlunit-driver 如果您想继续使用 2.53 版本,请在此处下载 HtmlUnitDriver 表单https://github.com/SeleniumHQ/htmlunit-driver/发布

于 2016-04-27T07:35:24.207 回答