我需要通过桌面应用程序测试网页,我正在尝试使用 selenium IDE,我已经成功创建了测试用例,但我无法在 java 上执行它们。
我一直在寻找有用的东西,但我根本找不到任何帮助。
谢谢
您应该创建一个 WebDriver 的实例并在该对象的实例上调用方法。
此处显示了一个简单的示例:http ://www.seleniumhq.org/docs/03_webdriver.jsp#introducing-the-selenium-webdriver-api-by-example
我希望你已经在 webdriver 中创建了脚本。
现在在 selenium ide 记录的脚本中,您有三个方法,称为 setup、testSomeName 和 tearDown。
从最基本的开始:要运行这个脚本,你需要做的就是在同一个类中创建一个主方法,并且你需要按照上面指定的顺序调用这些方法。
之后,您只需要运行该程序。
这是一个更清楚的例子:
public class p_adjcb {
public void setUp() throws Exception {
}
public void testP_adjcb() throws Exception {
}
public void tearDown() throws Exception {
}
public static void main(String[] args) {
p_adjcb obj = new p_adjcb();
try {
obj.setUp();
obj.testP_adjcb();
obj.tearDown();
} catch (Exception ex) {
}
}
}
如果您收到任何编译器错误,请确保您已下载该selenium-standalone-server.jar
文件并将其添加到您的类路径中。这是一个非常基本的开始。稍后您可能需要使用诸如junit 之类的 som 框架。
希望能帮助到你。
一个为此目的而创建的框架,(它在 Java 中)可以在这里下载,或者你可以在这里从 github 上查看项目。
这个项目的设计非常简单,但非常有效。这种类型的框架是我对每天在生产型环境中使用的框架的解释的“免费版本”。
有一个示例测试包含在名为 的项目中SampleFunctionalTest.java
。假设您按照自述文件阅读 T,您应该可以毫无问题地开始。
这是该框架中的测试的样子。
@Config(url = "http://ddavison.github.io/tests/getting-started-with-selenium.htm", browser = Browser.FIREFOX) // You are able to specify a "base url" for your test, from which you will test. You may leave `browser` blank.
public class SampleFunctionalTest extends AutomationTest {
/**
* You are able to fire this test right up and see it in action. Right click the test() method, and click "Run As... jUnit test".
*
* The purpose of this is to show you how you can continue testing, just by taking the semi colon out, and continuing with your test.
*/
@Test
public void test() {
// click / validateAttribute
click(props.get("click"))
.validateAttribute(props.get("click"), "class", "success") // validate that the class indeed added.
// setText / validateText
.setText(By.id("setTextField"), "woot!")
.validateText(By.id("setTextField"), "woot!") // validates that it indeed set.
// check / uncheck
.check(By.id("checkbox"))
.validateChecked(By.id("checkbox")) // validate that it checked
.check(props.get("radio.2")) // remember that props come from <class name>.properties, and are always CSS selectors. (why use anything else, honestly.)
.validateUnchecked(props.get("radio.1")) // since radio 1 was selected by default, check the second one, then validate that the first radio is no longer checked.
// select from dropdowns.
.selectOptionByText(By.xpath("//select[@id='select']"), "Second") // just as a proof of concept that you can select on anything. But don't use xpath!!
.validateText(By.id("select"), "2") // validateText() will actually return the value="" attr of a dropdown, so that's why 2 works but "Second" will not.
.selectOptionByValue(By.cssSelector("select#select"), "3")
.validateText(props.get("select"), "3")
// frames
.switchToFrame("frame") // the id="frame"
.validatePresent(By.cssSelector("div#frame_content"))
// windows
.switchToWindow("Getting Started with Selenium") // switch back to the test window.
.click(By.linkText("Open a new tab / window"))
.waitForWindow("Google") // waits for the url. Can also be the you are expecting. :) (regex enabled too)
.setText(By.name("q"), "google!")
.closeWindow(); // we've closed google, and back on the getting started with selenium page.
}
}