在自动化中, Selenium 自动化测试中有一个名字经常被提及 PageObject( 思想与面向对象的特征相 同 ) ,通常 PO 模型可以大大提高测试用例的维护效率
优点:可重用,业务和对象分离,代码结构清晰,方便代码维护
核心要素
1. 在 PO 模式中抽离封装集成一个BasePage 类,该基类应该拥有一个只实现 webdriver 实例的属性
2. 每一个 page 都继承 BasePage ,通过 driver 来管理本 page 中元素,将 page 中的操作封装成一个个方法
3.TestCase 继承 unittest.Testcase 类,并依赖 page 类,从而实现相应的测试步骤
PO 实现进入百度页面输入数据后进入下一个页面
组织代码
1 :实现 BasePage
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains #鼠标操作
class BasePage():
'''
BasePage封装所有界面都公用的方法。
例如driver,find_element等
'''
# 实例化BasePage类时,事先执行的__init__方法,该方法需要传递参数
def __init__(self,driver,url):
self.driver = driver
self.base_url = url
# 进入网址
def get(self):
self.driver.get(self.base_url)
#元素定位,替代八大定位
def get_element(self,*locator):
return self.driver.find_element(*locator)
#点击
def left_click(self,*locator):
ActionChains(self.driver).click(self.get_element(*locator)).perform()
#输入
def send_text(self,text,*locator):
self.driver.find_element(*locator).send_keys(text)
#清除
def clear_text(self, *locator):
self.driver.find_element(*locator).clear()
# 表单切换
def switch_iframe(self,*locator):
self.driver.switch_to.frame(self.driver.find_element(*locator))
#窗口切换
def switch_window(self,n):
self.driver.switch_to.window(self.driver.window_handles[n])
2 :实现 SearchPage
from selenium.webdriver.common.by import By
from base.base_page import BasePage
class SearchOne(BasePage):
def __init__(self,driver,url):
BasePage.__init__(self,driver,url)
#进入百度
def open_baidu(self):
self.get()
#输入数据
def input_search_content(self,text):
self.send_text(text,By.ID,"kw")
# 点击按钮
def click_baidu_search(self):
self.left_click(By.ID, "su")
def click_open_hao(self):
self.left_click(By.XPATH,".//*[@id='1']/h3/a[1]")
3 :实现 TestCase
import unittest
from selenium import webdriver
from page.page_one import SearchOne
from page.page_two import SearchTwo
class BaiBu(unittest.TestCase):
@classmethod
def setUpClass(cls) -> None:
cls.driver = webdriver.Firefox()
cls.driver.implicitly_wait(10)
def test001(self):
url="http://www.baidu.com"
s = SearchOne(self.driver,url)
s.open_baidu()
s.input_search_content("123")
s.click_baidu_search()
s.click_open_hao()
self.driver.switch_to.window(self.driver.window_handles[1])
def test002(self):
s=SearchTwo(self.driver,"")
s.open_baidu_map()
def tearDown(self) -> None:
# self.driver.quit()
pass
if __name__ == '__main__':
unittest.main()
PO 模式的优点
1:PO 提供了一种业务流程与页面元素操作分离的模式,这使得测试代码变得更加清晰
2 :页面对象与用例分离,使得我们更好的复用对象
3 :可复用的页面方法代码会变得更加优化
4 :更加有效的命令方式使得我们更加清晰的知道方法所操作的 UI 元素
以上就是Python自动化测试PO模型封装的详细内容,更多关于Python自动化测试PO模型的资料请关注脚本之家其它相关文章!
您可能感兴趣的文章:- python中Task封装协程的知识点总结
- Python面向对象封装继承和多态示例讲解
- Python 调用C++封装的进一步探索交流
- Python如何实现Paramiko的二次封装
- 使用Python封装excel操作指南
- python excel和yaml文件的读取封装
- python 使用paramiko模块进行封装,远程操作linux主机的示例代码
- Python之根据输入参数计算结果案例讲解