0
<td class="button" nowrap align="center">
<a href="#" onKeyPress="javascript:checkkey(event);" onMouseDown="javascript:funclogin();">
Login
</a>
</td>
如何在python中使用硒單擊此按鈕?如何點擊給定的鏈接?
<td class="button" nowrap align="center">
<a href="#" onKeyPress="javascript:checkkey(event);" onMouseDown="javascript:funclogin();">
Login
</a>
</td>
如何在python中使用硒單擊此按鈕?如何點擊給定的鏈接?
如何使用標籤的類?
driver.find_elements_by_xpath("//td[@class='button']/a").click()
無論如何,您可能希望在代碼中添加更好的標識符以使其更健壯。
可能重複[使用xpath來告訴硒在哪裏點擊?](http://stackoverflow.com/questions/3406103/using-xpath-to-tell-selenium-where-to-click) – Li0liQ
你能否詳細說明更多關於這個 –