我是这方面的新手,基本上我正在尝试使用 HtmlUnitDriver,这是我的代码:
WebDriver driver = new HtmlUnitDriver();
driver.get("http://www.google.com");
System.out.println(driver.getPageSource());
但我得到的页面来源是:
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head/>
<body/>
</html>
我已经尝试过 new HtmlUnitDriver(true) 但它仍然没有加载谷歌我已经将 selenium 服务器独立添加到类路径中。我做错什么了吗?谢谢
PS:我使用 selenium-server-standalone-2.24.1.jar 和 jre 1.7