我想点击菜单链接但没有运气.它总是显示异常 –
Exception in thread “main” org.openqa.selenium.WebDriverException:
unknown error: Element is not clickable at point (64, 64). Other
element would receive the click: <
div style=”position: absolute; left:
0px; top: 0px; width: 100%; height: 100%; z-index: 30;
background-color: rgb(221, 221, 221); opacity: 0.4;”>
我有以下html片段
Home
这是它看起来像的快照 –
我正在使用以下代码来实现相同的目标 –
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();
我检查了< div>接受点击的DOM中的标签.但我看到了这一点
有一个额外的属性,即display:none;
使用以下配置:
> Selenium 3.0.1
>司机-ChromeDriver
我不知道要处理这种情况.
解决方法:
尝试等到获得点击的元素消失:
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有时会忽略模态窗口,例如“正在加载页面”
并且“认为”目标元素(由模态窗口覆盖)实际上可见且可点击并尝试进行模态窗口接收的点击.
所以等到模态窗口消失是有意义的.
标签:java,selenium,selenium-webdriver
来源: https://codeday.me/bug/20190823/1701752.html