網站首頁 編程語言 正文
一、使用裝飾器實現(xiàn)單例
def Singleton(cls): ? ? _instance = {} ? ? ? def _singleton(*args, **kargs): ? ? ? ? if cls not in _instance: ? ? ? ? ? ? _instance[cls] = cls(*args, **kargs) ? ? ? ? return _instance[cls] ? ? ? return _singleton ? ? @Singleton class A(object): ? ? a = 1 ? ? ? def __init__(self, x=0): ? ? ? ? self.x = x ? ? a1 = A(2) a2 = A(3)
二、web自動化driver實現(xiàn)單例模式
2.1 編寫單例模式的裝飾器
singleton.py #coding:utf-8 #單例模式函數(shù),用來修飾類 def singleton(cls,*args,**kw): ? ? instances = {} ? ? def _singleton(): ? ? ? ? if cls not in instances: ? ? ? ? ? ? instances[cls] = cls(*args,**kw) ? ? ? ? return instances[cls] ? ? return _singleton
2.2 driver 使用裝飾器,實現(xiàn)單例模式
GetSeleniumDriver.py # -*- coding:utf-8 -*- from selenium import webdriver from singleton import singleton @singleton class GetSeleniumDriver(object): ? ? def __init__(self): ? ? ? ? self.driver = webdriver.Chrome()
2.3 獲取driver的實例,就是單例了
class My_task(RES): ? ? def __init__(self): ? ? ? ? self.driver=GetSeleniumDriver().driver ? ? ? def Making_task_Button(self): ? ? ? ? Making_task_Button=self.driver.find_element_by_xpath(RES.Making_task_Button_xpth) ? ? ? ? return Making_task_Button ? ? ? def Audit_task_Button(self): ? ? ? ? Audit_task_Button=self.driver.find_element_by_xpath(RES.Audit_task_Button_xpth) ? ? ? ? return Audit_task_Button
三、在自動化項目中具體的應用
3.1項目結構
四、工具層 Utils
4.1singleton.py 是單例裝飾器
#coding:utf-8 #單例模式函數(shù),用來修飾類 def singleton(cls,*args,**kw): ? ? instances = {} ? ? def _singleton(): ? ? ? ? if cls not in instances: ? ? ? ? ? ? instances[cls] = cls(*args,**kw) ? ? ? ? return instances[cls] ? ? return _singleton
4.2 GetSeleniumDriver.py ?driver實現(xiàn)單例
# -*- coding:utf-8 -*- from selenium import webdriver from Utils.singleton import singleton @singleton class GetSeleniumDriver(object): ? ? def __init__(self): ? ? ? ? self.driver = webdriver.Chrome()
五、頁面元素層 TsetSharelab
My_task.py # -*- coding:utf-8 -*- ? from Utils.GetSeleniumDriver import GetSeleniumDriver ? ? class My_task(): ? ? def __init__(self): ? ? ? ? self.driver=GetSeleniumDriver().driver ? ? ? def Making_task_Button(self): ? ? ? ? Making_task_Button=self.driver.find_element_by_xpath('/html/body/div[3]/div[1]/div/a[1]') ? ? ? ? return Making_task_Button ? ? ? def Audit_task_Button(self): ? ? ? ? Audit_task_Button=self.driver.find_element_by_xpath('/html/body/div[3]/div[1]/div/a[1]') ? ? ? ? return Audit_task_Button
六、流程層
把一步一步的動作,封裝成一個業(yè)務流程
BookCity_page_process.py
# -*- coding:utf-8 -*- from Utils.GetSeleniumDriver import GetSeleniumDriver ? import time ? class BookCity_page_process(object): ? ? def __init__(self): ? ? ? ? self.driver=GetSeleniumDriver().driver ? ? ? def WeiBo_Loain_To_Share(self): ? ? ? ? ? time.sleep(3) ? ? ? ? self.driver.find_elements_by_class_name('W_input').pop(0).send_keys(123) ? ? ? ? time.sleep(1) ? ? ? ? self.driver.find_elements_by_class_name('W_input').pop(1).send_keys(456)
七、case層 ,把業(yè)務邏輯組成一條條用例
test_case.py #coding:utf-8 from time import sleep from Utils.GetSeleniumDriver import GetSeleniumDriver ? class CreativeBooks(unittest.TestCase): ? ? @classmethod ? ? def setUpClass(self): ? ? ? ? self.driver = GetSeleniumDriver().driver ? ? ? ? sleep(2) ? ? @classmethod ? ? def tearDownClass(self): ? ? ? ? pass ? ? ? def setUp(self): ? ? ? ? self.driver = GetSeleniumDriver().driver
原文鏈接:https://blog.csdn.net/qq_39208536/article/details/123214101
相關推薦
- 2022-05-02 dubbo服務使用redis注冊中心的系列異常解決_Redis
- 2022-08-19 insert語句返回新增主鍵id失敗的解決方法
- 2022-08-12 C++鏈表實現(xiàn)通訊錄設計_C 語言
- 2022-12-04 Python學習之字典和集合的使用詳解_python
- 2022-05-17 ubuntu E: 無法獲得鎖 /var/lib/dpkg/lock-frontend - open
- 2022-08-21 caffe的python接口deploy生成caffemodel分類新的圖片_python
- 2022-10-20 Flutter投票組件使用方法詳解_Android
- 2022-11-25 使用PyTorch常見4個錯誤解決示例詳解_python
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細win安裝深度學習環(huán)境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結構-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支