【selenium】28、JavaScript聚集元素到顶部
作者:互联网
- 当元素不在当前屏幕,点击此元素会报错
- Element is not clickable at point
1、使用场景
2、当点击看不到的元素时,元素单击被拦截
- element click intercepted:Element is not clickable at point
3、方法一:
- 执行JavaScript脚本让元素出现在屏幕上方
document.getElementsByClassName("more")[1].scrollIntoView();
- 参考代码:
标签:元素,selenium,JavaScript,28,Element,点击,clickable,屏幕 来源: https://www.cnblogs.com/guojie-guojie/p/16161214.html