点击菜单链接时,获取元素不是可点击的例外

时间:2017-01-13 10:20:05

标签: java selenium selenium-webdriver

我想点击菜单链接但没有运气。它总是显示异常 -

  

线程“main”中的异常org.openqa.selenium.WebDriverException:   未知错误:元素在点(64,64)处无法点击。其他   元素将收到点击:<    div style =“position:absolute; left:   0像素;顶部:0px;宽度:100%;身高:100%; z-index:30;   background-color:rgb(221,221,221);不透明度:0.4;“>

我关注了<div id="RWR" class="clsDesktopHome" style="position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; overflow: auto;"> <div class="clsDesktop clsDesktopHomePage" style="width: 1553px; height: 430px; top: 0px; left: 15px;"> <div id="foid:2" class="clsDesktopHeader clsTextOnDesktopColor"> <div id="foid:1" class="clsDesktopTabs" style="margin-right: 230px; height: 28px; visibility: visible; width: auto;"> <span class="clsDesktopTab clsDesktopTabActive clsDesktopTabTypeHome clsDesktopTabTypeHomeActive"> <span class="clsDesktopTabContent"> <span class="clsDesktopTabTypeIcon"></span> <span class="clsDesktopTabMenuIcon"></span> <span class="clsDesktopTabCollaborationIcon"></span> <span class="clsDesktopTabCaption">Home</span> <span class="clsDesktopTabCloseIcon"></span> </span> </span> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabInactive clsDesktopTabCanClose clsDesktopTabTypeSheet"> <span class="clsDesktopTab clsDesktopTabHidden clsDesktopTabNoCaption clsDesktopTabTypeTabsMenu"> <span class="clsDesktopTab clsDesktopTabInactive clsAddNewContainer clsDesktopTabTypeAddNew"> </div> <div class="clsDesktopBelowTabs" style="height: 325px; visibility: visible;"> <div id="foid:2" class="clsDesktopFooter clsTextOnDesktopColor" style="height: 18px; line-height: 18px;"> </div> <div class="clsModalNode" style="position: absolute; left: 0px; top: 0px; width: 0px; height: 0px; z-index: 10; background-color: rgb(0, 0, 0);"></div> <div style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 30; background-color: rgb(221, 221, 221); opacity: 0.4; display: none;"></div> </div> 代码段

    WebElement element = driver.findElement(By.xpath(".//*[@id='foid:1']/span[1]/span/span[4]"));
    WebDriverWait wait = new WebDriverWait(driver, 120);
    wait.until(ExpectedConditions.elementToBeClickable(element));

   //driver.findElement(By.xpath("//span[contains(text(), 'Home')]")).click();

    driver.findElement(By.xpath(".//*[@id='foid:1']/span[1]/span/span[4]")).click();

这是它的样子 -

enter image description here

我正在使用以下代码来实现相同的目标 -

<div>

我检查了接受点击的DOM中的<div style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 30; background-color: rgb(221, 221, 221); opacity: 0.4;"></div> 标记。但我看到了这个

display:none;

有一个额外属性,即Selenium 3.0.1

使用以下配置:

  1. ChromeDriver
  2. 驱动程序 - myfile=haproxy.cfg git rev-list HEAD -- $myfile | while read i do git diff -U0 ${i}^ $i $myfile | sed "s/^/$i /" done | grep "<sometext>"
  3. 我不知道要处理这种情况。

2 个答案:

答案 0 :(得分:6)

尝试等到获得点击的元素消失:

new WebDriverWait(driver, 10).until(ExpectedConditions.invisibilityOfElementLocated(By.xpath('//div[@style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 30; background-color: rgb(221, 221, 221); opacity: 0.4;"]')));

由于这个答案被低估了,我添加了一些细节来解释为什么它可以成为可接受的解决方案。

chromedriver已知问题(我个人已经多次面对)chromedriver有时会忽略模式窗口,例如“正在加载页面”

enter image description here

和“认为”目标元素(由模态窗口覆盖)实际上可见并且可点击并尝试进行模态窗口接收的点击。

所以等到模态窗口消失是有道理的。

答案 1 :(得分:0)

我有同样的问题并尝试了很多解决方案,但它没有用。最后我看到了selenium docs并找到了stalenessof

new WebDriverWait(driver, 10).until(ExpectedConditions.stalenessOf(findElement(By.xpath("element_path"))));

现在应该可以了。