Selenium Webdriver Python找到下一个元素

时间:2014-06-25 13:42:37

标签: python selenium webdriver

我有这个HTML代码:

<caption>
    <em id="qwerty"> ABC </em>
</caption>

<caption>
    <em id="qwerty"> 123 </em>
</caption>

如何使用Selenium Webdriver在Python中创建一个程序,找到id =&#34; qwerty&#34;?

的第二个元素

1 个答案:

答案 0 :(得分:1)

你可以使用find_elements_by_id()并获取第二个元素(python中的索引从0开始):

element = driver.find_elements_by_id('qwerty')[1]