日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

python單例模式之selenium?driver實現(xiàn)單例_python

作者:傲嬌的喵醬 ? 更新時間: 2022-05-03 編程語言

一、使用裝飾器實現(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

欄目分類
最近更新