Python通过xpath查找元素通过selenium读取元素信息

Posted 文刀文刀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python通过xpath查找元素通过selenium读取元素信息相关的知识,希望对你有一定的参考价值。

#coding:utf-8
from selenium import webdriver
import time
url =http://www.baidu.com
driver = webdriver.Chrome()
driver.get(url)
time.sleep(1)
e=driver.find_element_by_xpath(//*[@id="lg"]/img)
print e
print e.text
print e.id
print e.tag_name
print type(e)
time.sleep(1)
driver.quit()
e.text 读取元素内容
e.tag_name 读取元素标签名

 


以上是关于Python通过xpath查找元素通过selenium读取元素信息的主要内容,如果未能解决你的问题,请参考以下文章

通过 xpath 在 Python 中查找元素

通过xpath相对节点位置查找元素

Selenium 通过 xpath 查找所有元素

使用 selenium 函数按名称查找元素时元素不可交互,但在通过 xpath 方法使用查找元素时有效

RF库XML测试通过xpath查找元素的说明

selenium3 + python - xpath定位