如何使用vbscript单击任何按钮

时间:2015-09-28 05:52:29

标签: vbscript automated-tests qtp

我需要使用vbscipt启动qtp.exe应用程序,但我不知道如何点击某个按钮以及如何使用vbscript打开特定的测试文件。

请给我一些提示或想法。

1 个答案:

答案 0 :(得分:1)

您可以通过创建QTP的COM对象轻松完成。

Dim QTPObj,QTPTest
Set QTPObj=CreateObject("QuickTest.Application")

'Check if the application is not already Launched
If Not QTPObj.Launched then
QTPObj.Launch
end if

QTPObj.Visible=True
QTPObj.Open "D:\MyQTPTests\Test1001 1001" 'name of the start up script
Set QTPTest=QTPObj.Test
QTPTest.Run 'Run the Test
QTPTest.Close 'Close the Test
QTPObj.Quit 'Quit the QTP Application