我使用Selenium IDE创建了一个测试用例并将其导出到Junit。当我运行我的TestCase1.java文件时,我得到以下错误,所以我无法继续。
C:\ Program Files \ java \ jdk1.5.0_06 \ bin> javac c:\ acceptance-tests \ TestCase1.java
c:\ acceptance-tests \ TestCase1.java:1:包org.openqa.selenium.server不存在
import org.openqa.selenium.server.RemoteControlConfiguration;
^
c:\ acceptance-tests \ TestCase1.java:2:包org.openqa.selenium.server不存在
import org.openqa.selenium.server.SeleniumServer;
^
c:\ acceptance-tests \ TestCase1.java:3:包com.thoughtworks.selenium不存在
import com.thoughtworks.selenium。*;
和
当我尝试在Selenium RC上运行Junit测试时,我收到以下消息:
“package junit.framewo rk.Test不存在import junit.framework.Test。*;”
答案 0 :(得分:0)
您需要将Selenium客户端驱动程序和JUnit库文件添加到类路径中。您可以从http://www.seleniumhq.org和http://www.junit.org获取这些内容
通过JUnit运行测试时,您需要连接到正在运行的Selenium RC服务器。您可以以编程方式启动服务器或运行selenium-server jar。这两种方法都是documented here。