向下滚动到带有量角器的元素 [英] Scroll down to an element with protractor

查看:110
本文介绍了向下滚动到带有量角器的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在页面上有一个我正在测试的元素,我必须向下滚动才能看到。当我执行测试时,我得到元素在点(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();
})

你的webdriver无法阅读那一点(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

这篇关于向下滚动到带有量角器的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆