Scroll down to an element with protractor(使用量角器向下滚动到元素)
问题描述
我正在测试的页面上有一个元素,我必须向下滚动才能看到它.例如,当我执行测试时,我得到 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
这篇关于使用量角器向下滚动到元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用量角器向下滚动到元素


- 如何显示带有换行符的文本标签? 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01