Webdriver的设计模式:Page Object(页面模型)

Posted zw520ly

tags:

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

设计思想:面向对象,将单个页面所有可能用到元素封装到一个page类中,并提供一些常用的方法,其属性就代表页面元素,普通方法代表对元素所做的操作

以博客园的登录页面为例:

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
public class BlogLogin {

//登陆账号元素
WebElement account;

//登陆密码元素
WebElement password

//登录按钮元素
WebElement loginBtn;

//构造方法,用于初始化页面对象及其页面元素
public BlogLogin(WebDriver driver) {

//定位账号输入框
account=driver.findElement(By.id("input1"));

//定位到密码输入框
password=driver.findElement(By.id("input2"));

//定位到登录按钮
loginBtn=driver.findElement(By.id("signin"));
}

//提供一个登录的方法,只需要提供用户名,密码即可登录
public void Login(String username,String userpassword){
account.sendKeys(username);
password.sendKeys(userpassword);
loginBtn.click();
}
}

以上是关于Webdriver的设计模式:Page Object(页面模型)的主要内容,如果未能解决你的问题,请参考以下文章

Page Object 设计模式-PO

UI自动化测试—PO设计模式

Selenium - WebDriver: Page Objects

webdriver定位页面元素时使用set_page_load_time()和JavaScript停止页面加载

python selenium-8 Page Object模式

启动IE时报“This is the initial start page for the WebDriver server.”