软件测试时在QTP运行过程中屏蔽鼠标的方法
在运行 QTP 脚本的过程中,有些操作可能是对鼠标、键盘敏感的,需要在QTP运行过程中屏蔽鼠标或键盘输入。这是可用SystemUtil对象的BlockInPut方法,如下代码所示: SystemUtil.BlockInput Browser(\"Welcome: Mercury Tours\").Page(\"Welcome:MercuryTours\"
在运行
QTP脚本的过程中,有些操作可能是对鼠标、键盘敏感的,需要在QTP运行过程中屏蔽鼠标或键盘输入。这是可用SystemUtil对象的BlockInPut方法,如下代码所示:
SystemUtil.BlockInput
Browser(\"Welcome:
Mercury Tours\").Page(\"Welcome: Mercury Tours\").WebEdit(\"userName\").Set \"
mercury\"
Browser(\"Welcome: Mercury Tours\").Page(\"Welcome: Mercury Tours\").WebEdit(\"password\").SetSecure \"4082986e39ea469e70dbf8c5a29429fe138c6efc\"
Browser(\"Welcome: Mercury Tours\").Page(\"Welcome: Mercury Tours\").Image(\"Sign-In\").Click 2, 2
SystemUtil.UnblockInput
原文转自:http://www.ltesting.net