Selenium(Python)PageObject页面对象

Posted 此生不换Yang

tags:

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

使用PageObject页面对象的好处是,

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

只需要去修改Xpath或者ID,

而不用去修改测试用例本身;

本次的思路是:

1、常用方法类

2、页面对象

3、测试用例类

 

WebDriverMethod.py:

from selenium import webdriver


class SeleniumMethod(object):
# 封装Selenium常用方法

def __init__(self, driver):
self.driver = driver

def startUpFirefox(self):
# 打开Firefox浏览器
self.driver = webdriver.Firefox()

def openURL(self, urlAddress):
# 打开地址
self.driver.get(urlAddress)

def MaxWindow(self):
# 把浏览器窗口最大化
return self.driver.maximize_window()

def getTitle(self):
# 获取页面标题
return self.driver.title

def clearAndIinput(self, location, value):
# 根据xpath定位元素并清除、输入
element = self.driver.find_element_by_xpath(location)
element.clear()
element.send_keys(value)

def click(self, location):
# 根据xpath定位元素并点击
return self.driver.find_element_by_xpath(location).click()

def getText(self, location):
# 根据xpath定位元素并获取文本值
return self.driver.find_element_by_xpath(location).text

def closeWindow(self):
# 关闭窗口
return self.driver.close()

def quiteDriver(self):
# 结束driver
return self.driver.quit()

 

BaiduHome.py:

from WebDriverMethod import SeleniumMethod

class BaiduPage(SeleniumMethod):
# 百度页面对象

baiduUrl = "https://www.baidu.com/"
# 百度首页的地址
baiduTitle = "百度一下,你就知道"
# 百度首页的标题
inputBox = ".//*[@id=‘kw‘]"
# 百度输入框
searchBotton = ".//*[@id=‘su‘]"
# 百度搜索按钮

responseTitle = "中国_百度搜索"
# 搜索结果页的标题
oneResult = ".//*[@id=‘1‘]/h3/a"
# 第一行
oneResultText = "中国_百度百科"
# 第一行的文本

def openBaidu(self):
# 打开百度
self.startUpFirefox()
self.MaxWindow()
self.openURL(self.baiduUrl)

def searchChinese(self):
# 搜索中国
self.clearAndIinput(self.inputBox, "中国")
self.click(self.searchBotton)

def exitBaidu(self):
# 退出百度
self.closeWindow()
self.quiteDriver()

BaiduTest.py:
import unittest
from time import sleep

from BaiduHome import BaiduPage


class MyTestCase(unittest.TestCase):

def test_searchChinese(self):
# 测试用例
homePage = BaiduPage(self)
homePage.openBaidu()
assert homePage.getTitle(), homePage.baiduTitle
# 断言百度标题
sleep(2)
homePage.searchChinese()
sleep(2)
assert homePage.getTitle(), homePage.responseTitle
# 断言搜索结果页标题
assert homePage.getText(homePage.oneResult), homePage.oneResultText
# 断言搜索结果第一行的文本
homePage.exitBaidu()

if __name__ == ‘__main__‘:
unittest.main()










































































































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

selenium ide和selenium python的区别

python+selenium环境安装

python+selenium十:selenium的二次封装

Selenium 之 Mac 环境下 Python 安装 selenium 踩坑记录

selenium python怎么封装方法

python selenium不关闭当前浏览器修改配置