【Python元素定位API之CSS_SELECTOR】
作者:互联网
一、元素属性定位 语法:标签名[属性名=”属性值“]
# driver.find_element(By.CSS_SELECTOR, 'input[autocomplete="off" ]')
二、模糊定位 一般用于元素动态发生变化时
# 当元素动态发生变化时,使用模糊定位 开头(^),结尾($),包含(*)
# class ="s-bri c-font-normal c-color-t"
#定位class以s-bri开头的元素
# driver.find_element(By.CSS_SELECTOR, 'a[class ^= "s-bri"]')
# 定位class以c-color-t结尾的元素
# driver.find_element(By.CSS_SELECTOR, 'a[class $= "c-color-t"]')
# 定位c-font-normal 包含在class里的元素
# driver.find_element(By.CSS_SELECTOR, 'a[class *= "c-font-normal"]')
标签:定位,Python,元素,find,SELECTOR,API,class,CSS 来源: https://www.cnblogs.com/hjh-com/p/16292578.html