使用量角器向下滚动到元素

编程入门 行业动态 更新时间:2024-10-27 10:25:57
本文介绍了使用量角器向下滚动到元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在测试的页面上有一个元素,我必须向下滚动才能看到它.例如,当我执行测试时,我得到 Element is not clickable at point (94, 188).

I have an element on the page that I'm testing that I have to scroll down to be visible. When I execute my test, I get Element is not clickable at point (94, 188) for example.

我尝试了以下方法:

dvr.executeScript('window.scrollTo(0,250);');

但它没有用.有谁知道这是怎么回事?

But it didn't work. Does anyone know how this works?

推荐答案

我觉得这对你有帮助:

dvr.executeScript('window.scrollTo(94,188);').then(function() { element(by.<<here your button locator>>).click(); })

您的网络驱动程序无法读取该点(1254,21),原因是您的量角器浏览器无法覆盖整个页面您要测试什么,然后我们给出一个命令浏览器滚动到该点(1254,21),然后执行点击操作

your webdriver is unable to read that point (1254,21),the reason is your protractor browser unable to cover the full of page what do you want to test, then we give a command that browser is scroll to that point (1254,21), then perform the click operation

更多推荐

使用量角器向下滚动到元素

本文发布于:2023-11-23 03:38:26,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1619944.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:量角器   元素

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!