如何在<之间获取文本和>使用Python Selenium

时间:2014-09-23 00:12:55

标签: python selenium

进一步提问here

<a id='1234' href ="http://www.google.com' class='alpha' > MY TEXT </a>
<caption>
    <em> ABCD </em>
</caption>

我想在即

之间提取文字
id='1234' href ="http://www.google.com' class='alpha'

如何使用python和selenium执行此操作。

1 个答案:

答案 0 :(得分:0)

使用

web_element.get_attribute(attribute_name) 
web_element对象上的

方法,用于获取 web_element 中存在的任何属性的值,在这种情况下为 id,href,class