这是我的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>
答案 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();
确保图像指向正确的来源。