selenium基于原生第二次封装

# coding:utf-8

from seleniumimport webdriver

from selenium.webdriver.support.waitimport WebDriverWait

from selenium.webdriver.supportimport expected_conditionsas EC

from selenium.webdriver.common.byimport By

from selenium.webdriver.common.action_chainsimport ActionChains

from selenium.webdriver.support.selectimport Select

# By的用法

# driver.find_element("id", "kw")

# driver.find_element(By.ID, "kw")

class Base():

'''基于原生的selenium做二次封装'''

    def __init__(self, driver):

self.driver = driver

self.timeout =10

        self.t =0.5

    def findElement(self, locator, value=''):

'''定位元素,返回元素对象,10s钟没定位到,Timeout异常,locator传元组'''

        if not isinstance(locator, tuple):

print("locator的参数类型错误,必须穿元组类型,如:('id', 'kw')")

else:

print("正在定位元素,定位方式为→{0},定位元素为→{1}".format(locator[0], locator[1]))

if value !='':# value 值定位

                ele = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.text_to_be_present_in_element_value(locator, value))

return ele

else:# 默认为此方法常规定位

                try:

ele = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.presence_of_element_located(locator))

return ele

except:

print("定位失败,定位方式为→{0},定位元素为→{1}".format(locator[0], locator[1]))

return []

def findElements(self, locator, value=''):

'''定位元素,返回元素对象,10s钟没定位到,Timeout异常,locator传元组'''

        if not isinstance(locator, tuple):

print("locator的参数类型错误,必须穿元组类型,如:('id', 'kw')")

else:

print("正在定位元素,定位方式为→{0},定位元素为→{1}".format(locator[0], locator[1]))

if value !='':# value 值定位

                eles = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.text_to_be_present_in_element_value(locator, value))

return eles

else:# 默认为此方法常规定位

                try:

eles = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.presence_of_all_elements_located(locator))

return eles

except:

print("定位失败,定位方式为→{0},定位元素为→{1}".format(locator[0], locator[1]))

return []

def sendKeys(self, locator, text=''):

try:

self.findElement(locator).send_keys(text)

except:

print("text:%s输入错误" % text)

def click(self, locator):

try:

self.findElement(locator).click()

except:

print("点击失败")

def clear(self, locator):

try:

self.findElement(locator).clear()

except:

print("清空内容失败")

def isSelected(self, locator, Type=''):

''' 判断元素是否被选中,返回bool值 及点(选中/取消选中)'''

        ele =self.find(locator)

try:

if Type =='':# 如果type参数为空,返回元素是否为选中状态,True/False (默认)

                r = ele.is_selected()

return r

elif Type =='click':# 如果type参数为click,执行元素的点击操作

                ele.click()

else:

print("type参数 {0} 错误,仅可为click或".format(Type))

except:

return False

    def isElementExist(self, locator):

'''判断单个元素是否在DOM(元素树)里面'''

        try:

self.findElement(locator)

return True

        except:

return False

    def is_title(self, title=''):

'''判断当前页面title是否为title,返回bool值'''

        try:

result = WebDriverWait(self.driver, self.timeout, self.t).until(EC.title_is(title))

return result

except:

return False

    def is_title_contains(self, title=''):

'''判断当前页面title名是否含有title,返回bool值'''

        try:

result = WebDriverWait(self.driver, self.timeout, self.t).until(EC.title_contains(title))

return result

except:

return False

    def is_text_in_element(self, locator, text=''):

'''判断当前获取到的text含text,返回bool值'''

        try:

result = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.text_to_be_present_in_element(locator, text))

return result

except:

return False

    def is_value_in_element(self, locator, _value=''):

'''返回bool值, value为空字符串,返回False'''

        if not isinstance(locator, tuple):

print('locator参数类型错误,必须传元祖类型:loc = ("id", "value1")')

try:

result = WebDriverWait(self.driver, self.timeout, self.t).until(

EC.text_to_be_present_in_element_value(locator, _value))

return result

except:

return False

    def get_title(self):

'''获取title'''

        return self.driver.title

def get_text(self, locator):

'''获取文本'''

        try:

result =self.findElement(locator).text

return result

except:

print("获取text失败")

return ""

    def get_attribute(self, locator, name):

'''获取属性'''

        try:

element =self.findElement(locator)

return element.get_attribute(name)

except:

print("获取%s属性失败" % name)

return ""

    def select_by_index(self, locator, index=0):

'''通过索引,index是索引第几个,从0开始,默认选第一个'''

        element =self.find(locator)# 定位select这一栏

        Select(element).select_by_index(index)

def select_by_value(self, locator, value):

'''通过value属性'''

        element =self.find(locator)

Select(element).select_by_value(value)

def select_by_text(self, locator, text):

'''通过文本值定位'''

        element =self.find(locator)

Select(element).select_by_visible_text(text)

# 这里只写了几种方法,后续有需要用到的定位方法或者操作,可以继续封装起来然后调用

if __name__ =='__main__':

driver = webdriver.Chrome()

web = Base(driver)

driver.get("https://account.cnblogs.com/signin")

# 举个列子,后续在case里面直接调用封装的就可以了

    loc_1 = (By.CLASS_NAME, "login-title")

t = web.get_text(loc_1)

print(t)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容