我正在尝试使用selenium浏览器自动化框架编写一个简单的程序,我需要使用库htmlunit。
这是我的代码:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
public class Test {
public static void main(String[] args) {
WebDriver driver = new HtmlUnitDriver();
driver.get("http://www.google.com");
System.out.println(driver.getTitle());
}
}
因此它应该打印出“Google”但我会继续: “java.lang.ClassNotFoundException:org.openqa.selenium.htmlunit.HtmlUnitDriver”
我在unix终端中运行它,所以这就是我输入它来运行它
export CLASSPATH=selenium-2.9.0/selenium-server-standalone-2.9.0.jar:selenium-2.9.0/libs/htmlunit-2.9.jar
javac -cp $CLASSPATH Test.java
java Test
然后我收到错误......所以有什么建议吗?我似乎加载了两个库,但我知道我正在搞乱htmlunit库......
答案 0 :(得分:2)
您也应该在运行测试时指定类路径,而不仅仅是在编译期间。
(另外,IIRC独立jar包含htmlunit;你可能不需要显式包含htmlunit jar。)