1. 程式人生 > >selenium顯式等待和EC(expected_conditions)模組

selenium顯式等待和EC(expected_conditions)模組

    很多人都有這種經歷,selenium腳本當前執行沒問題,過了一段時間再執行就報錯了,然後過幾天又好了。其中的原因估計60%的人都知道,是因為元素載入這塊有問題。通常的解決方案就是加上sleep或者隱式等待(implicitly_wait),後面發現這種辦法太浪費時間了,測試用例一旦過多就要抓狂了,並且還是不太穩定。

    其實,要想提升selenium指令碼的穩定性和速度,顯式等待結合EC(expected_conditions)模組是個非常不錯的選擇,下面是python語言的寫法(人生苦短,我用python),大家可以進行二次封裝。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

# @建立時間: 2018/10/16 09:01
# @建立人 : Kevin
# @IDE : PyCharm

from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Chrome()
driver.get('url')
'''判斷title是否是一致,返回布林值'''
WebDriverWait(driver,10,0.1).until(EC.title_is("title_text"))


'''判斷title是否與包含預期值,返回布林值'''
WebDriverWait(driver,10,0.1).until(EC.title_contains("title_text"))

'''判斷某個元素是否被加到了dom樹裡,並不代表該元素一定可見,如果定位到就返回元素'''
WebDriverWait(driver,10,0.1).until(EC.presence_of_element_located((locator)))

'''判斷某個元素是否被新增到了dom裡並且可見,可見代表元素可顯示且寬和高都大於0'''
WebDriverWait(driver,10,0.1).until(EC.visibility_of_element_located((locator)))


'''判斷元素是否可見,如果可見就返回這個元素'''
WebDriverWait(driver,10,0.1).until(EC.visibility_of(driver.find_element(locator)))

'''判斷是否至少有1個元素存在於dom樹中,如果定位到就返回列表'''
WebDriverWait(driver,10,0.1).until(EC.presence_of_all_elements_located((locator)))

'''判斷是否至少有一個元素在頁面中可見,如果定位到就返回列表'''
WebDriverWait(driver,10,0.1).until(EC.visibility_of_any_elements_located((locator)))

'''判斷指定的元素中是否包含了預期的字串,返回布林值'''
WebDriverWait(driver,10,0.1).until(EC.text_to_be_present_in_element((locator),'預期的text'))

'''判斷指定元素的value屬性值中是否包含了預期的字串,返回布林值(注意:只是value屬性)'''
WebDriverWait(driver,10,0.1).until(EC.text_to_be_present_in_element_value((locator),'預期的text'))

'''判斷該frame是否可以switch進去,如果可以的話,返回True並且switch進去,否則返回False'''
WebDriverWait(driver,10,0.1).until(EC.frame_to_be_available_and_switch_to_it(locator))

'''判斷某個元素在是否存在於dom或不可見,如果可見返回False,不可見返回這個元素'''
WebDriverWait(driver,10,0.1).until(EC.invisibility_of_element_located((locator)))

'''判斷某個元素是否可見並且是可點選的,如果是的就返回這個元素,否則返回False'''
WebDriverWait(driver,10,0.1).until(EC.element_to_be_clickable((locator)))

'''等待某個元素從dom樹中移除'''
WebDriverWait(driver,10,0.1).until(EC.staleness_of(driver.find_element(locator)))

'''判斷某個元素是否被選中了,一般用在下拉列表'''
WebDriverWait(driver,10,0.1).until(EC.element_to_be_selected(driver.find_element(locator)))

'''判斷某個元素的選中狀態是否符合預期'''
WebDriverWait(driver,10,0.1).until(EC.element_selection_state_to_be(driver.find_element(locator),True))

'''判斷某個元素的選中狀態是否符合預期'''
WebDriverWait(driver,10,0.1).until(EC.element_located_selection_state_to_be((locator),True))

'''判斷頁面上是否存在alert,如果有就切換到alert並返回alert的內容'''
accept = WebDriverWait(driver,10,0.1).until(EC.alert_is_present())