seleniumPage Object模式(使用selenium的PageFactory)
Posted yjh1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了seleniumPage Object模式(使用selenium的PageFactory)相关的知识,希望对你有一定的参考价值。
PageObject 类
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; public class PageObject { private String url="http://www.baidu.com"; //声明所有页面中用到的元素,作为类中的变量。 //将@FindBy注解通过对应的定位方法找到的元素赋值给成员变量 @FindBy(xpath = "//input[@id=‘kw‘]") public WebElement input; @FindBy(xpath = "//input[@id=‘su‘]") public WebElement submit; public PageObject(WebDriver driver){ initPage(driver); } private void initPage(WebDriver driver){ //打开网页 driver.get(url); //使用selenium的pageFactory,完成元素的初始化 PageFactory.initElements(driver,this); } //使用搜索 public void search(){ input.sendKeys("12306"); submit.click(); } }
测试类
import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.testng.Assert; import org.testng.annotations.Test; public class Test1 { @Test public static void test() { System.setProperty("webdriver.chrome.driver","E:\chromedriver_win32\chromedriver.exe"); WebDriver driver=new ChromeDriver(); PageObject pageObject=new PageObject(driver); pageObject.search(); Assert.assertTrue(driver.getTitle().contains("百度"),"断言失败"); } }
以上是关于seleniumPage Object模式(使用selenium的PageFactory)的主要内容,如果未能解决你的问题,请参考以下文章
kotlin用object实现单例模式,companion object与java静态