2

我有相当大的 JSF 1.2 项目,我想为它编写一些集成测试。完美的情况是,当我可以从我的项目中运行这些测试时,它会打开我的浏览器并执行所有操作(使用 Selenium),这些操作都写在我的测试用例中。当它无论如何都会运行这些测试时,不需要打开浏览器:)

我尝试了几种可能性,无论如何我仍然无法将任何硒库附加到我的项目中,我意识到我只是不知道从哪里开始 - 你能给我一些方向吗?

4

1 回答 1

2

可能对您有所帮助,您可以在测试方法中编写测试逻辑

package com.test;

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

import java.util.concurrent.TimeUnit;

import static org.junit.Assert.fail;

public class test1 {
    private WebDriver driver;
    private String baseUrl;
    private StringBuffer verificationErrors = new StringBuffer();
    @Before
    public void setUp() throws Exception {
    driver = new InternetExplorerDriver();
        driver = new ChromeDriver();
        baseUrl = "http://www.google.com";
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
    }

    @Ignore
    @Test
    public void test1() throws Exception {
        // your test code 

    }

    @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;
        }
    }
}

你只需要调用你想要测试它的 test1 类。 它将自动处理它。

于 2013-05-23T13:33:06.120 回答