java中的webdriver selenium是否有任何虚拟项目测试用例?

时间:2014-01-07 14:22:42

标签: java selenium selenium-webdriver

我是Selenium WebDriver的初学者。有没有可以帮助我开始学习的测试用例的虚拟项目?你能否提出一些起点?

2 个答案:

答案 0 :(得分:0)

您可以使用虚拟类,如下所示。

import static org.junit.Assert.fail;

import java.util.concurrent.TimeUnit;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class TestExample {
  private WebDriver driver;
  private String baseUrl;
  private StringBuffer verificationErrors = new StringBuffer();

  @Before
  public void setUp() throws Exception {
    driver = new FirefoxDriver();
    baseUrl = "http://localhost:8080";
    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
  }

  @Test
  public void testExample() throws Exception {
    driver.get(baseUrl);
  }

  @After
  public void tearDown() throws Exception {
    driver.quit();
  }
}

只要确保你的pom中有selenium maven repo with junit。

答案 1 :(得分:0)