我应该如何处理脚本中的向下滚动操作?
为了捕获位于网页末尾的位图,我必须向下滚动页面(如果不是,则代码不会捕获位图)。我应该如何处理脚本中的向下滚动操作?
In order to capture a bitmap located at the end of the web page, I have to scrolldown the page (if not the code is not capturing the bitmap). How should I handle the scroll down operation in the script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否在 Web 应用程序中的
IMG
元素上执行位图检查点?如果是这样,那么 QTP 应该自动将对象滚动到视图中。如果没有,您可以尝试使用未记录的MakeObjVisible
方法。Are you preforming a bitmap checkpoint on an
IMG
element in the web application? If so then QTP should automatically scroll the object into view. If it doesn't you can try using the undocumentedMakeObjVisible
method.我更喜欢 Motti 的解决方案,但如果您真的、真的、真的想要执行向下滚动,您可以将 END 按钮的类型命令发送到浏览器,或者只是创建一个 Windows 脚本主机对象并执行 sendkey ” {END}”命令。
在这种情况下这应该有效:
I would prefer the solution of Motti, but if you really, really, really want to perform a scroll down, you can send the type command for the END button to the browser, or just create a Windows Scripting Host object and perform a sendkey "{END}" command.
This should work in that case:
'这段代码可以进一步迭代以找到您想要的特定单元格
'This piece of code can be iterated further to find the particular cell you want
向下滚动
向上滚动
Scroll down
Scroll up