这是我的页面源代码。我需要点击" infoview"元素如何使用selenium webdriver做任何建议?

时间:2014-07-22 09:08:43

标签: selenium-webdriver

这是我的HTML页面源代码。我需要点击“infoview”元素。有任何建议如何使用selenium webdriver?

<a href="javascript:showDocumentList()">
<IMG style="BORDER-TOP-STYLE: none; BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none" src="/InfoViewApp/res/general/btn_Infoview.gif"></a>

2 个答案:

答案 0 :(得分:0)

driver.findElement(By.xpath(&#34;图像的xpath&#34;))。click();

答案 1 :(得分:0)

driver.findElement(By.xpath("//img[@src='/InfoViewApp/res/general/btn_Infoview.gif']")).click();

确保图像指向正确的来源。