解决点击span元素报错Element is not clickable at point
Posted xiaosi203
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决点击span元素报错Element is not clickable at point相关的知识,希望对你有一定的参考价值。
尝试了通过id,xpath等等定位元素后点击都提示Element is not clickable at point
再看了下可以click的元素发现上面有onClick事件
查看了一下元素是span
几番操作都不行,最后还是请教的大神,通过js脚本来操作
其实浏览器中可以F12,然后同等的输入js脚本,点击Enter,发现页面会有函数对应的页面操作
将js脚本同等移动到java中
顺带介绍一下操作滚动条
String high = "scroll(0,10000)";
((javascriptExecutor) driver).executeScript(high);
((JavascriptExecutor) driver).executeScript("在此放入你的js脚本");
js脚本会有$符号,记得带上“”将$涵盖,同时对于脚本语句里面有"的,要带上转义
由此得知,js脚本还是很强大的
以上是关于解决点击span元素报错Element is not clickable at point的主要内容,如果未能解决你的问题,请参考以下文章
运行用例时,报错Unknow Error:Element xxx is not clickable……的解决方法
Firefox上运行自动化测试脚本提示元素无法点击“WebDriverException: Message: Element is not clickable at point“解决方法
spring “The matching wildcard is strict, but no declaration can be found for element”报错原
报错:selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate ele
vue开发问题-解决方法vue Element UI使用中.$scopedSlots.default is not a function 报错
TypeScript语法错误:Argument of type ‘string‘ is not assignable to parameter of type ‘Element‘. 解决方法