selenium 判斷元素是否有屬性
Selenium 是一個(gè)用于自動化測試的工具,您可以使用它來判斷一個(gè) HTML 元素是否有特定的屬性。
通過使用 Selenium 的 API,您可以使用 has_attribute() 函數(shù)來判斷一個(gè)元素是否有特定的屬性。例如,如果您想判斷一個(gè)元素是否具有 "class" 屬性,您可以使用以下代碼:
element = driver.find_element_by_id("element_id") if element.has_attribute("class"): ? ? print("The element has a 'class' attribute.") else: ? ? print("The element does not have a 'class' attribute.") 復(fù)制代碼
如果您希望根據(jù)元素的屬性值來判斷,則可以使用 get_attribute() 函數(shù)。例如,如果您想判斷元素的 "class" 屬性是否為 "example",則可以使用以下代碼:
element = driver.find_element_by_id("element_id") if element.get_attribute("class") == "example": ? ? print("The 'class' attribute of the element is 'example'.") else: ? ? print("The 'class' attribute of the element is not 'example'.")
標(biāo)簽: