xpath元素定位
1. / 和 //
/是直系查找;//是所有后代中查找
/html/body/div # 选择html下面的body下面的div元素
//div//p # 选择 所有的 div 元素里面的 所有的 p 元素
2. 根据属性定位
[@属性名=‘属性值’], eg: //*[@id=‘west’]
//*[@id='west'] # 选择 id 为 west 的元素
//select[@class='single_choice'] # 选择所有 select 元素中 class为 single_choice 的元素
3. 属性值包含字符串
//*[contains(@style,'color')] # 选择 style属性值 包含 color 字符串的 页面元素
//*[starts-with(@style,'color')] # 选择 style属性值 以 color 字符串 开头 的 页面元素
//*[ends-with(@style,'color')] # 选择 style属性值 以 某个 字符串 结尾 的 页面元素
//*[contains(text(), 'color')] # 选中文本中包含color的页面元素
4.按照次序选择
//p[2] # 选择 p类型第2个的子元素
//div/p[2] # 选取父元素为div 中的 p类型 第2个 子元素
//div/*[2] # 选择父元素为div的第2个子元素,不管是什么类型
//p[last()] # 选取p类型倒数第1个子元素
//div/p[last()-2] # 选择父元素为div中p类型倒数第3个子元素
//option[position()<=2] # 选取option类型第1到2个子元素
//*[@class='multi_choice']/*[position()<=3] # 选择class属性为multi_choice的前3个子元素
//*[@class='multi_choice']/*[position()>=last()-2] # 选择class属性为multi_choice的后3个子元素
last() 本身代表最后一个元素
last()-1 本身代表倒数第2个元素
last()-2 本身代表倒数第3个元素
5. 组选择
//option | //h4 # 选所有的option元素 和所有的 h4 元素
//*[@class='single_choice'] | //*[@class='multi_choice'] # 选所有的 class 为 single_choice 和 class 为 multi_choice 的元素
//*[@id='china']/.. # 选择 id 为 china 的节点的父节点
//*[@id='china']/../../.. # 可以继续找上层父节点
//*[@class='single_choice']/following-sibling::* # 选择 class 为 single_choice 的元素的所有后续兄弟节点
//*[@class='single_choice']/following-sibling::div # 选择后续节点中的div节点
//*[@class='single_choice']/preceding-sibling::* # 选择 class 为 single_choice 的元素的所有前面的兄弟节点
6. 连续选择
# 先寻找id是china的元素
china = wd.find_element_by_id('china')
# 再选择该元素内部的p元素
elements = china.find_elements_by_xpath('.//p')
|