Junit Test With Selenium Driver

3086 ワード

JunitsとSelenium


Junitsはunit levelのテストを処理しています.Seleniumはfunctional leveのテストを処理しています.全く違いますが、JunitでSeleniumテストを書くことができます.

完全な例

import java.util.concurrent.TimeUnit;
 
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
 
public class SeleniumTest {
    private static FirefoxDriver driver;
    WebElement element;
 
    @BeforeClass
    public static void openBrowser(){
        driver = new FirefoxDriver();
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
    } 
 
    @Test
    public void valid_UserCredential(){
        System.out.println("Starting test " + new Object(){}.getClass().getEnclosingMethod().getName());
        driver.get("http://www.store.demoqa.com");	
        driver.findElement(By.xpath(".//*[@id='account']/a")).click();
        driver.findElement(By.id("log")).sendKeys("testuser_3");
        driver.findElement(By.id("pwd")).sendKeys("Test@123");
        driver.findElement(By.id("login")).click();
        try{
            element = driver.findElement (By.xpath(".//*[@id='account_logout']/a"));
        }catch (Exception e){
        }
        
        Assert.assertNotNull(element);
        System.out.println("Ending test " + new Object(){}.getClass().getEnclosingMethod().getName());
    }
 
    @Test
    public void inValid_UserCredential()
    {
        System.out.println("Starting test " + new Object(){}.getClass().getEnclosingMethod().getName());
        driver.get("http://www.store.demoqa.com");	
	driver.findElement(By.xpath(".//*[@id='account']/a")).click();
	driver.findElement(By.id("log")).sendKeys("testuser");
	driver.findElement(By.id("pwd")).sendKeys("Test@123");
	driver.findElement(By.id("login")).click();
	try{
	    element = driver.findElement (By.xpath(".//*[@id='account_logout']/a"));
	}catch (Exception e){
	}
        Assert.assertNotNull(element);
        System.out.println("Ending test " + new Object(){}.getClass().getEnclosingMethod().getName());
    }
 
    @AfterClass
    public static void closeBrowser(){
        driver.quit();
    }
}

BeforeClass注記について

    @BeforeClass
    public static void openBrowser()
    {
        driver = new FirefoxDriver();
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
    }

@BeforeClassは、Junitの下のコードをすべてのtestが走る前に事前に実行するように伝えます.このopenBrowserでは、ブラウザを開くことに相当します.

inValidについてUserCredentialメソッド


これはただのlogin機能です.相対的に特殊なのはtry catchブロックとassert判断です.失敗したときだけassert文が機能します.
@AfterClass注記について
この注釈はJunit注釈に伝え,すべてのtestが走った後,この方法を実行する.ここではブラウザドライバを閉じます.

補足を続ける...


参考:http://www.toolsqa.com/java/junit-framework/junit-test-selenium-webdriver/