如何使用Selenium在另一个标签中查找自定义标签

时间:2014-01-16 01:38:16

标签: python selenium

<div class="myclass">    
<a href="example.com" class="link"  content="This is my content" </a>
</div>

使用Selenium(Python),我想找到content的值。我尝试使用find_element_by_tag_name,但似乎没有用。

2 个答案:

答案 0 :(得分:5)

find_elements_by_xpath('//div[@class="myclass"]/a').get_attribute("content")

答案 1 :(得分:1)

find_elements_by_css_selector('div.myclass > a').get_attribute('content')

这比xpath更清晰。 CSS比xpath更快,更易读。我建议使用它。