Python和Selenium搜索标签之外的文本

时间:2016-08-19 02:58:11

标签: python selenium-webdriver

我正在尝试使用能够搜索特定文本并单击它的python制作一个selenium脚本。下面是我正在使用的代码示例。在这个例子中,我正在搜索字符串“Next”并单击它。

<div class="btn-container text-center">
<button id="btnNext" class="btn btn-lg btn-primary btn-block">Next</button>
 </div>

到目前为止,我已尝试过以下内容:

driver.find_element_by_xpath("//*[@id='btnNext']").click()
driver.find_element_by_id('btnNext').click()
driver.find_element_by_xpath("//*[contains(text(),'" + 'Next' + "')]").click()
driver.find_element_by_xpath("//button[contains(.,'Next')]").click()

但到目前为止还没有运气。有什么建议?谢谢你的帮助!

0 个答案:

没有答案