以下代码是 HTML
<table cellspacing="0" cellpadding="0" border="0" width="192">
<tbody>
<tr>
</tr>
<tr>
<td class="rhs-customer" valign="top">
<p>
</p>
<p>
<img hspace="6" align="left" alt="" src="../common/images/icon-contactus.gif">
<a onclick="window.open('../applications/homeline.asp','HomeLineNumber','height=500, width=700,scrollbars=yes,resizable=1,top=0,left=0')" href="#"> **Call Us**</a>
</p>
<p>
</p>
</td>
</tr>
</tbody>
</table>
我想点击链接“给我们打电话”,如果你能帮忙,我是 WebDriver 的新手。
我正在使用下面的 xpath 尝试单击链接,但我被抛出了NoSuchElementException
。
driver.findElement(By.xpath("html/body/table/tbody/tr[2]/td/table/tbody/tr/td[3]/table/tbody/tr/td/table/tbody/tr[1]/td/table/tbody/tr[2]/td/p[2]/a")).click();