进一步提问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执行此操作。
答案 0 :(得分:0)
使用
web_element.get_attribute(attribute_name)
web_element对象上的方法,用于获取 web_element 中存在的任何属性的值,在这种情况下为 id,href,class 。