使用Yaml
文件进行元素信息的管理
$ pip install selenium-po
代码中使用的是name
后的内容,实际页面元素定位使用的value
中的内容,方便后续统一维护
pages:
- page:
pageName: index
desc: 首页
locators:
- {desc: "搜索栏",type: "id",value: "kw",timeout: 3, name: "index_input"}
- {desc: "查询按钮",type: "id",value: "su",timeout: 3, name: "index_search"}
- page:
pageName: news
desc: 新闻
locators:
- {desc: "搜索栏",type: "id",value: "ww",timeout: 3, name: "news_input"}
- {desc: "查询按钮",type: "id",value: "s_btn_wr",timeout: 3, name: "news_search"}
import os
import time
from selenium_po.elementoperator import ElementOperator
path = os.path.dirname(os.path.abspath(__file__))
class BaiDuIndexAction(ElementOperator):
def __init__(self, path=f"{path}/pages.yaml", file_name='index', driver=None):
super(BaiDuIndexAction, self).__init__(path, file_name, driver)
self.url = 'http://www.baidu.com'
class BaiDuNewsAction(ElementOperator):
def __init__(self, path=f"{path}/pages.yaml", file_name='news', driver=None):
super(BaiDuNewsAction, self).__init__(path, file_name, driver)
self.url = 'http://news.baidu.com/'
if __name__ == '__main__':
baidu = BaiDuIndexAction()
baidu.open(baidu.url, baidu.index_input)
baidu.input(baidu.index_input, "python")
baidu.click(baidu.index_search)
time.sleep(2)
baidu.screenshot_pic("1.png")
# baidu.close()
baidu_news = BaiDuNewsAction(driver=baidu.driver)
baidu_news.open(baidu_news.url, baidu_news.news_input)
baidu_news.input(baidu_news.news_input, "python新闻")
baidu_news.click(baidu_news.news_search)
time.sleep(2)
baidu_news.screenshot_pic("2.png")
baidu_news.close()
往「首页_搜索栏」输入「python」
点击「首页_查询按钮」
往「新闻_搜索栏」输入「python新闻」
点击「新闻_查询按钮」
公众号:「测试游记」