无法找到具有onclick的锚标记的元素

时间:2019-05-21 08:02:59

标签: java selenium

无法单击锚标记下的元素并具有onclick代码。需要单击提交按钮。

我提供了隐式等待,并使用了xpath和css选择器。

<a onclick="if(validateSupplierANDLocation(4)){return saveorsubmitorder(4);}else{return false;};" id="ctl00_ContentPlaceHolder1_lnkSubmit" tabindex="35" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ContentPlaceHolder1$lnkSubmit&quot;, &quot;&quot;, true, &quot;saveNexgenOrder&quot;, &quot;&quot;, false, true))"><img src="../images/tspacer.gif" alt="" width="10" height="1"><img id="imgOSubmit" border="none" src="../images/buttons/submit.gif" alt="Submit" title="Submit" style="cursor:pointer    "><img id="imgOReSubmit" border="none" src="../images/buttons/btn_re-submit.gif" alt="Submit" title="Submit" style="cursor: pointer; display: none;"></a>

<img src="../images/tspacer.gif" alt="" width="10" height="1">
<img id="imgOSubmit" border="none" src="../images/buttons/submit.gif" alt="Submit" title="Submit" style="cursor:pointer    ">
<img id="imgOReSubmit" border="none" src="../images/buttons/btn_re-submit.gif" alt="Submit" title="Submit" style="cursor: pointer; display: none;">
  

错误:未知错误:元素在点(885,911)不可单击。其他元素

将获得点击:

code: WebDriverWait wait = new WebDriverWait(driver, 20);
        WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//html[1]/body[1]/form[1]/div[4]/table[1]/tbody[1]/tr[3]/td[1]/div[1]/div[2]/div[1]/div[3]/a[1]/img[2]")));
        driver.findElement(By.xpath("//html[1]/body[1]/form[1]/div[4]/table[1]/tbody[1]/tr[3]/td[1]/div[1]/div[2]/div[1]/div[3]/a[1]/img[2]")).click();

1 个答案:

答案 0 :(得分:0)

用于定位按钮的绝对路径不可靠,因为按钮的位置可能在DOM中发生变化。尝试使用相对的xpath。 尝试调试到将元素存储在WebElement变量中的位置。如果这是您想要的元素,请执行click()操作。 WebElement var = driver.findElement(By....)

在某些情况下,如果单击操作不起作用,则必须使用JavascriptExecutor。请参阅链接Not able to click on button in java selenium?