黄瓜水豚滚动到页面底部
我想使用我的 Cucumber/Capybara 设置来通过驱动浏览器并滚动到页面底部来测试无限滚动,以确保加载新内容。有办法做到这一点吗?
I'd like to use my Cucumber/Capybara setup to test endless scroll by driving a browser and scrolling to the bottom of the page to ensure that the new content is loaded. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 javascript 来实现此目的:
You could use javascript to achieve this:
我通过“滚动到页面底部”步骤中的
visit '#footer'
解决了这个问题。I solved this with
visit '#footer'
inside a "scroll to the bottom of the page" step.没有 jQuery 的解决方案或适应任何高度而不需要幻数:
A solution without jQuery or adapts to any height without magic numbers:
例如:
更多详细信息此处
As an example:
More details here