运行selenium IDE导出测试用例

时间:2012-06-12 20:33:37

标签: java automated-tests selenium-webdriver

我是测试世界的新手。我正在使用selenium IDE来记录测试。另外,我将测试用例导出为JUnit4测试用例。我的导出如下:

package com.example.tests;

import java.util.regex.Pattern;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;

public class Test {
    private WebDriver driver;
    private String baseUrl;
    private StringBuffer verificationErrors = new StringBuffer();
    @Before
    public void setUp() throws Exception {
        driver = new FirefoxDriver();
        baseUrl = "http://192.168.8.207/";
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
    }

    @Test
    public void test() throws Exception {
        driver.get(baseUrl + "/");
        driver.findElement(By.name("user")).clear();
        driver.findElement(By.name("user")).sendKeys("admin");
        driver.findElement(By.name("password")).clear();
        driver.findElement(By.name("password")).sendKeys("infineta123");
        driver.findElement(By.id("btnLogin-button")).click();
    }

    @After
    public void tearDown() throws Exception {
        driver.quit();
        String verificationErrorString = verificationErrors.toString();
        if (!"".equals(verificationErrorString)) {
            fail(verificationErrorString);
        }
    }

    private boolean isElementPresent(By by) {
        try {
            driver.findElement(by);
            return true;
        } catch (NoSuchElementException e) {
            return false;
        }
    }
}

如何执行此测试用例?在那之后,我如何自动执行几个这样的测试用例?

2 个答案:

答案 0 :(得分:3)

使用此代码作为测试的跑步者。

import org.junit.runner.JUnitCore;
import com.example.tests;

public static void main(String[] args) {
    Result result = JUnitCore.runClasses(Test.class);
    for (Failure failure : result.getFailures()) {
        System.out.println(failure.toString());
    }
}

Test.class是包含测试代码的文件名(Test)。如果您有多个测试用例,可以添加类列表。

答案 1 :(得分:0)

查看此页面:http://code.google.com/p/selenium/wiki/UsingWebDriver

您可能需要将selenium和导入下载到项目中。

如果这样做,你可以进入“测试” - 它取决于你正在使用的开发工具 - 在NetBeans中,我通过运行 - 测试文件(我认为是Ctrl + F6)