我是靠谱客的博主 壮观花生,最近开发中收集的这篇文章主要介绍pythonselenium获取html标签内容_Python以及如何从Selenium元素WebElement对象获取文本?...,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
I am trying to get the tag text content in html page by using Selenium methods, but it seems method someElement.getText() is not available in Python.
Any help, please?
Here's traceback:
AttributeError: 'WebElement' object has no attribute 'getText'
解决方案
Once you locate the element you can use the text method.
Example:
for element in self.driver.find_elements_by_tag_name('img'):
print element.text
print element.tag_name
print element.parent
print element.location
print element.size
最后
以上就是壮观花生为你收集整理的pythonselenium获取html标签内容_Python以及如何从Selenium元素WebElement对象获取文本?...的全部内容,希望文章能够帮你解决pythonselenium获取html标签内容_Python以及如何从Selenium元素WebElement对象获取文本?...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复