如何在 Selenium RC 上运行 Junit 测试用例

发布于 2024-11-19 03:41:17 字数 742 浏览 1 评论 0原文

我使用 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 不存在
导入 org.openqa.selenium.server.RemoteControlConfiguration;
^
c:\acceptance-tests\TestCase1.java:2: 包 org.openqa.selenium.server 不存在
导入 org.openqa.selenium.server.SeleniumServer;
^
c:\acceptance-tests\TestCase1.java:3: 包 com.thoughtworks.selenium 不存在
导入 com.thoughtworks.selenium.*;

我尝试在 Selenium RC 上运行 Junit 测试时,我收到以下消息:
“包junit.framework.Test不存在导入junit.framework.Test.*;”

I created a test case using Selenium IDE and exported it to Junit. When I run my TestCase1.java file I get the following errors and so I am not able to proceed.

C:\Program Files\java\jdk1.5.0_06\bin>javac c:\acceptance-tests\TestCase1.java
c:\acceptance-tests\TestCase1.java:1: package org.openqa.selenium.server does no exist
import org.openqa.selenium.server.RemoteControlConfiguration;
^
c:\acceptance-tests\TestCase1.java:2: package org.openqa.selenium.server does not exist
import org.openqa.selenium.server.SeleniumServer;
^
c:\acceptance-tests\TestCase1.java:3: package com.thoughtworks.selenium does not exist
import com.thoughtworks.selenium.*;

and

When I attempt to run Junit tests on Selenium RC, I get the following message:
"package junit.framewo rk.Test does not exist import junit.framework.Test.*;"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奢望 2024-11-26 03:41:17

您需要将 Selenium 客户端驱动程序和 JUnit 库文件添加到类路径中。您可以从 http://www.seleniumhq.orghttp://www.junit.org
通过 JUnit 运行测试时,您需要连接到正在运行的 Selenium RC 服务器。您可以以编程方式启动服务器或运行 selenium-server jar。这两种方法都记录在此处

You need to add both the Selenium Client Drivers and JUnit library files to your classpath. You can get these from http://www.seleniumhq.org and http://www.junit.org
When running tests through JUnit you need to connect to a running Selenium RC server. You can start the server programmatically or run the selenium-server jar. Both of these methods are documented here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文