selenium判斷指定元素是否存在
2023-06-15 01:34 作者:青陽(yáng)小棧 | 我要投稿
selenium自身不存在判斷元素是否存在的方法;
使用selenium的get_element_by來(lái)抓取元素的時(shí)候,如果找不到元素必定會(huì)彈出異常,沒(méi)法用is_displayed 等方法來(lái)判斷是否存在;
基于以上原因,只能通過(guò)抓取和異常捕獲自己實(shí)現(xiàn)一個(gè)判斷元素是否存在的功能。下面直接上代碼:
# 檢查元素是否存在
def check_element_exists(driver, element, condition):
? ?try:
? ? ? ?if condition == 'class':
? ? ? ? ? ?????????????????????????????????????????driver.find_element_by_class_name(element)
? ? ? ?elif condition == 'id':
? ? ? ? ? ?????????????????????????????????????????????driver.find_element_by_id(element)
? ? ? ?elif condition == 'xpath':
? ? ? ? ? ?????????????????????????????????????????driver.find_element_by_xpath(element)
? ? ? ?return True
? ?except Exception as e:
? ? ? ?return False
標(biāo)簽: