Selenium PageFactory页面对象

Posted 此生不换Yang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium PageFactory页面对象相关的知识,希望对你有一定的参考价值。

使用页面对象的好处是:

当页面元素的位置发生变化时,

我们只需要去修改id或者xpath,

而不用去修改测试用例。

 

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.testng.Assert;
import org.testng.Reporter;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class TestNG {
private WebDriver driver;

@FindBy(xpath = ".//*[@id=‘kw‘]")
private WebElement inputBox;
//输入框

@FindBy(xpath = ".//*[@id=‘su‘]")
private WebElement searchButton;
//搜索按钮

@BeforeMethod
public void beforeMethod() throws InterruptedException {
System.setProperty("webdriver.firefox.marionette",
"src/main/resourcec/geckodriver.exe");
String baiduHomePage;
baiduHomePage = "https://www.baidu.com/";

driver = new FirefoxDriver();
PageFactory.initElements(driver, this);
//构造函数,初始化PageFactory对象
driver.manage().window().maximize();
driver.get(baiduHomePage);
Thread.sleep(2000);
Assert.assertEquals(driver.getTitle(), "百度一下,你就知道");
}

@Test
public void testNG() throws InterruptedException {
inputBox.clear();
inputBox.sendKeys("Selenium");

searchButton.click();
Thread.sleep(3000);

Reporter.log("搜索Selenium的测试用例");
Assert.assertEquals(driver.getTitle(), "Selenium_百度搜索");
}

@AfterMethod
public void afterMethod(){
driver.close();
driver.quit();
}

}

以上是关于Selenium PageFactory页面对象的主要内容,如果未能解决你的问题,请参考以下文章

org.openqa.selenium.support.pagefactory.findElement的java.lang.NullPointerException(DefaultElementLoc

Selenium WebDriver PageFactory FindsBy 使用 jQuery 选择器?

Selenium Webdriver 和 PageFactory 初始化 List<WebElement> 元素

Selenium的PageFactory & PageObject 在大型项目中的应用

无法使用 Selenium 和页面工厂在页面对象类中调用“org.openqa.selenium.WebDriver.getTitle()”

seleniumPage Object模式(使用selenium的PageFactory)