如何通过桌面应用程序使用selenium测试网页?

时间:2013-10-25 13:35:37

标签: java swing testing selenium desktop

我需要通过桌面应用程序测试网页,我正在尝试使用 selenium IDE,我已经成功创建了测试用例,但我不是 能够在java上执行它们。

我一直在寻找有用的东西,但我找不到任何帮助。

谢谢

3 个答案:

答案 0 :(得分:0)

您应该创建WebDriver的实例并在该对象的实例上调用方法。

此处显示了一个简单示例:http://www.seleniumhq.org/docs/03_webdriver.jsp#introducing-the-selenium-webdriver-api-by-example

答案 1 :(得分:0)

我希望你在webdriver中创建了这个脚本。

现在在selenium ide记录的脚本中你有三个方法叫做 设置,testSomeName和tearDown

从最基本的:要运行此脚本,您需要做的就是在同一个类中创建一个main方法,并且您需要按照上面指定的顺序调用这些方法。

之后你只需要运行该程序。

这是一个让它更清晰的例子:

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文件并将其添加到类路径中。 这是一个非常基本的开始。稍后您可能需要使用som框架,例如 junit

希望它有所帮助。

答案 2 :(得分:0)

为此原因创建的框架(在Java中)可以下载here,或者您可以从github here检查项目。

这个项目的设计非常简单,但非常有效。这种类型的框架是我对生产类型环境中每天使用的框架的解释的“免费版本”。

有一个示例测试包含在名为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.

    }
}