我试图在eclipse中使用HTMLunitdriver。
我写过
WebDriver driver = new HtmlUnitDriver();
所有jar文件都添加在buildpath中,但我收到错误" HTMLunit驱动程序无法解析为类型"。
任何人都可以提供任何指示吗?
答案 0 :(得分: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/releases