0

ここに私がこれまでに持っているものがあります:

アプリケーションにログインしてホームページに移動する、動作中の Webdriver ベースの Java クラス:

import java.io.File;
import java.io.IOException;
import java.util.concurrent.TimeUnit;

import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.testng.AssertJUnit;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;


public class MLoginFFTest {

    private WebDriver driver;
    private String baseUrl;
    private String fileName = "screenshot.png";

    @BeforeMethod
    public void setUp() throws Exception {
        FirefoxProfile profile = new FirefoxProfile();
        profile.setPreference("network.http.phishy-userpass-length", 255);
        profile.setAssumeUntrustedCertificateIssuer(false);

        driver = new FirefoxDriver(profile);

        baseUrl = "https://a.b.c.d/";
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
    }

    @Test
    public void testAccountLogin() throws Exception {
        driver.get(baseUrl + "web/certLogon.jsp");
        driver.findElement(By.name("logonName")).clear();

        AssertJUnit.assertEquals(driver.findElement(By.name("logonName"))
                .getTagName(), "input");

        AssertJUnit.assertEquals(driver.getTitle(), "DA Logon");

        driver.findElement(By.name("logonName")).sendKeys("username");
        driver.findElement(By.name("password")).clear();
        driver.findElement(By.name("password")).sendKeys("password");
        driver.findElement(By.name("submit")).click();
        driver.findElement(By.linkText("Account")).click();


        AssertJUnit.assertEquals(driver.getTitle(), "View Account");


    }

    @AfterMethod
    public void tearDown() throws Exception {

        File screenshot = ((TakesScreenshot) driver)
                .getScreenshotAs(OutputType.FILE);

        try {
            FileUtils.copyFile(screenshot, new File(fileName));
        } catch (IOException e) {
            e.printStackTrace();
        }
        driver.quit();

    }

}

1. ユーザー名とパスワードを入力する必要があるログイン ページと、認証が成功すると表示されるホームページです。

今、私はこれを Pagefactory を使用して PageObjects として実装したいので、私は持っています:

package com.example.pageobjects;

import static com.example.setup.SeleniumDriver.getDriver;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.FluentWait;
import org.openqa.selenium.support.ui.Wait;



public abstract class MPage<T> {

    private static final String BASE_URL = "https://a.b.c.d/";
    private static final int LOAD_TIMEOUT = 30;
    private static final int REFRESH_RATE = 2;

    public T openPage(Class<T> clazz) {
        T page = PageFactory.initElements(getDriver(), clazz);
        getDriver().get(BASE_URL + getPageUrl());
        ExpectedCondition pageLoadCondition = ((MPage) page).getPageLoadCondition();
        waitForPageToLoad(pageLoadCondition);
        return page;
    }

    private void waitForPageToLoad(ExpectedCondition pageLoadCondition) {
        Wait wait = new FluentWait(getDriver())
                .withTimeout(LOAD_TIMEOUT, TimeUnit.SECONDS)
                .pollingEvery(REFRESH_RATE, TimeUnit.SECONDS);

        wait.until(pageLoadCondition);
    }

    /**
     * Provides condition when page can be considered as fully loaded.
     *
     * @return
     */
    protected abstract ExpectedCondition getPageLoadCondition();

    /**
     * Provides page relative URL/
     *
     * @return
     */
    public abstract String getPageUrl();
}

そして、ログインページについては、これらのページを呼び出すテストと同様に、それをどのように実装するかわかりません。

4

1 に答える 1

1

これらのリンクが役立つことを願っています:

webdriver のページ オブジェクト

jBehave を使用したページ オブジェクト

前/後のメソッドを担当するクラスを1つ持つことをお勧めします。それらは、シナリオ全体の前後に呼び出す必要があります。現在、ページにログインした直後に webdriver を閉じますが、これは望ましくない動作だと思います。ログインページとメインページの両方で、すべてのクリックが発生するページ (現在、MLoginFFTest クラスはログインしています) に対して単純に 1 レベルの抽象化を抽出できます。これで、他のクラスは、次のように Pages 呼び出しからメソッドを実行するだけになります。

@Test
public void shouldOpenMainPage(){
   LoginPage loginPage = new LoginPage();
   MainPage mainPage = loginPage.loginCorrectly();
   mainPage.verifyOnMainPage();
   mainPage.doSthElse();
   verifySth(....);
}

したがって、ファイル構造は sth のようになります

++pages/LoginPage.class
++pages/MainPage.class
++steps/SomeTest.class

お役に立てれば。

于 2012-09-03T09:35:51.020 に答える