我应该如何处理脚本中的向下滚动操作?

发布于 2024-11-07 01:23:19 字数 65 浏览 0 评论 0原文

为了捕获位于网页末尾的位图,我必须向下滚动页面(如果不是,则代码不会捕获位图)。我应该如何处理脚本中的向下滚动操作?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

丿*梦醉红颜 2024-11-14 01:23:19

您是否在 Web 应用程序中的 IMG 元素上执行位图检查点?如果是这样,那么 QTP 应该自动将对象滚动到视图中。如果没有,您可以尝试使用未记录的 MakeObjVisible 方法。

Browser("B").Page("P").Image("I").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 undocumented MakeObjVisible method.

Browser("B").Page("P").Image("I").MakeObjVisible
紫瑟鸿黎 2024-11-14 01:23:19

我更喜欢 Motti 的解决方案,但如果您真的、真的、真的想要执行向下滚动,您可以将 END 按钮的类型命令发送到浏览器,或者只是创建一个 Windows 脚本主机对象并执行 sendkey ” {END}”命令。
在这种情况下这应该有效:

CreateObject("WScript.Shell").SendKeys "{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:

CreateObject("WScript.Shell").SendKeys "{END}"
青柠芒果 2024-11-14 01:23:19
Set obj = oPage.WebTable("object_Name")
Set objWshShell = CreateObject("WScript.shell")
obj.ChildItem(2,1,"WebEdit",0).Fireevent "onmouseover"
objWshShell.SendKeys "{DOWN}"
objWshShell.SendKeys "{DOWN}"

'这段代码可以进一步迭代以找到您想要的特定单元格

Set obj = oPage.WebTable("object_Name")
Set objWshShell = CreateObject("WScript.shell")
obj.ChildItem(2,1,"WebEdit",0).Fireevent "onmouseover"
objWshShell.SendKeys "{DOWN}"
objWshShell.SendKeys "{DOWN}"

'This piece of code can be iterated further to find the particular cell you want

谁把谁当真 2024-11-14 01:23:19

向下滚动

Set pfr_obj=Browser("p").Page("page")
pfr_obj.RunScript("window.scrollBy(0,900)")

向上滚动

Set pfr_obj=Browser("p").Page("page")
pfr_obj.RunScript("window.scrollBy(0,-900)")

Scroll down

Set pfr_obj=Browser("p").Page("page")
pfr_obj.RunScript("window.scrollBy(0,900)")

Scroll up

Set pfr_obj=Browser("p").Page("page")
pfr_obj.RunScript("window.scrollBy(0,-900)")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文