... is not clickable at point原因一种情况页面没有加载完全,另外一个是加载完元素没有在当前页面,需要滚动滑..._elementclickinterceptedexception">
当前位置:   article > 正文

ElementClickInterceptedException: element click intercepted: Element is not clickable at point

elementclickinterceptedexception

org.openqa.selenium.ElementClickInterceptedException: element click intercepted: Element <div class="tab_3_back">...</div> is not clickable at point

原因一种情况页面没有加载完全,另外一个是加载完元素没有在当前页面,需要滚动滑轮才可以。

没有加载完成的,解决办法在请求完前面页面后通过:Thread.sleep()的方式,停顿几秒钟,让页面加载完成。

二种情况:

WebElement webElement = webDriver.findElement(By.xpath(""));//找到这个元素
((JavascriptExecutor) webDriver).executeScript("window.scrollTo("+webElement.getLocation().getX()+","+webElement.getLocation().getY()+")");//滚动到当前元素。

还有一种解决办法是设置为无界面启动:options.addArguments("headless");// 无界面参数。

无界面参数设置后,可以不用再设置滚动到当前
    

找到问题用了一天,解决问题用了十分钟。。汗~                    

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/686417
推荐阅读
相关标签
  

闽ICP备14008679号