【发布时间】:2012-08-06 06:19:59
【问题描述】:
我在我的应用程序中编写了一个 selenium 示例测试用例。然后我右键单击该文件并选择“测试文件”。结果
Testsuite: com.MyApp.SampleSeleniumTest
Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.265 sec
Testcase: warning(junit.framework.TestSuite$1): FAILED
No tests found in com.MyApp.SampleSeleniumTest
junit.framework.AssertionFailedError: No tests found in com.MyApp.SampleSeleniumTest
Test com.MyApp.SampleSeleniumTest FAILED
我的代码是
package com.MyApp;
import com.thoughtworks.selenium.*;
import org.junit.Test;
public class SampleSeleniumTest extends SeleneseTestCase {
@Override
public void setUp() throws Exception {
setUp("http://www.google.com", "*firefox");
}
@Test
public void whatever() throws Exception {
selenium.open("/");
assertTrue(selenium.isTextPresent("Explore"));
}
}
【问题讨论】:
-
您确定您使用的是 JUnit 4.x 吗?否则不能使用注解。
-
是的,我使用的是 JUnit 4.8.2。它现在工作。无论如何感谢您的回复
标签: selenium selenium-rc selenium-webdriver selenium-ide selenium-grid