rem 在一个页面的某链接上按右键
Browser("Google").Page("qwewqe - Google 搜索").Link("qwewqe 的博客空间联城网[免费发布信息][分类信息,信").Click micRightBtn
Dim wshShell
Set wshShell = CreateObject("WScript.Shell")
'模拟键盘操作,向下移动两次
For i=1 to 2
wshShell.SendKeys "{DOWN}" '模拟键盘操作
Next
'模拟键盘操作,按回车键,完成在新窗口中打开链接
wshShell.SendKeys "{ENTER}"
示例二:
em 在Word中复制粘贴一段文字的右键操作
'选择需要复制的原文字,Drop后面的内容定义了文字块的坐标
Window("Microsoft Word").WinObject("Microsoft Word 文档").Drag 510,180
Window("Microsoft Word").WinObject("Microsoft Word 文档").Drop 645,178
'按右键
Window("Microsoft Word").WinObject("Microsoft Word 文档").Click 576, 182, micRightBtn
Dim wshShell
Set wshShell = CreateObject("WScript.Shell")
'模拟键盘操作,向下移动两次
For i=1 to 2
wshShell.SendKeys "{DOWN}" '模拟键盘操作
Next
'模拟键盘操作,按回车键,完成复制操作
wshShell.SendKeys "{ENTER}" '模拟键盘操作