码迷,mamicode.com
首页 > 其他好文 > 详细

Selenium:使用PageFactory实现PagaObject设计模式

时间:2016-10-12 13:40:44      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

  软件测试培训WebDriver为了支持PageObject模式,内置了一个PageFactory的工厂类。接下来本文通过一个案例来讲下如何使用PageFactory。

  首先定义一个PageObject下面这个Class定义了一个页面对象通过工厂的方式将目标页面上的元素都定义好并且定义了一个当前页面的一个执行步骤【关键词搜索】

  package cn.testfan;

  import org.openqa.selenium.WebElement;

  import org.openqa.selenium.support.FindBy;

  public class BaiduSearchPage

  {

  @FindBy(id="kw")

  private WebElement a;

  @FindBy(id="su")

  private WebElement b;

  public void searchKeyWords(String text)

  {

  为了保证上述代码能运行不报空指针我们需要实例化这个PageObject写一个测试类的Class如下

  package cn.testfan;

  import org.openqa.selenium.WebDriver;

  import org.openqa.selenium.firefox.FirefoxDriver;

  import org.openqa.selenium.support.PageFactory;

  public class TestBaiduWithPageFactory {

  public static void main(String[] args) throws InterruptedException {

  WebDriver driver = new FirefoxDriver();

  driver.get("http://www.baidu.com/");

  driver.manage().window().maximize();

  BaiduSearchPage page = PageFactory.initElements(driver, BaiduSearchPage.class);

  page.searchKeyWords("testfan");

  Thread.sleep(1500);

  System.out.println(driver.getTitle());

  driver.close();

  }

  }

Selenium:使用PageFactory实现PagaObject设计模式

标签:

原文地址:http://www.cnblogs.com/52zz/p/5952205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!