我创建了一堆 UFT 12(前 QTP)测试,并且我还创建了一个批处理文件以运行这些测试。
当我在本地运行批处理文件时,测试运行良好。
这是我使用的脚本:
Set qtpApp = CreateObject("QuickTest.Application")
Set fsObj = CreateObject("Scripting.FileSystemObject")
Set qtpResObj = CreateObject ("QuickTest.RunResultsOptions")
qtpApp.Launch
qtpApp.Visible= true
sfolderPath = "C:\QA\ManagerForOracleDB"
Set mainFolderObj = fsObj.GetFolder (sfolderPath)
Set testSubFolders = mainFolderObj.SubFolders
sPath = "C:\&formatDate&\"
For each folderobj in testSubFolders
chkfolderobj = folderObj.Path & "\Action0"
if ( fsObj.FolderExists(chkfolderobj)) then 'The Folder is a QTP test folder'
qtpApp.Open folderObj.Path, True, False
sResultFolderPath = sPath&folderObj.Name & "\Res" 'Set the results location'
qtpResObj.ResultsLocation = sfolderPath
qtpApp.Test.Run qtpResObj , True
strResult = qtpApp.Test.LastRunResults.Status
WScript.echo strResult
qtpApp.Test.Close
End if
Next
'Send Mail
qtpApp.Quit
'Release the file System objects
Set testSubFolders = Nothing
Set mainFolderObj = Nothing
Set fsObj = Nothing
Set qtpResObj= Nothing
Function formatDate ()
str= now ()
str=replace(str,"/","")
str=replace(str,":","")
str=replace(str," ","")
formatDate = mid (str,1,len(str-2))
End Function
现在我正在尝试通过启动它的作业远程执行这些批处理文件。我面临两个问题:
第一个:我有一个带有弹出框的交互式服务检测提示,我应该单击查看消息以切换到另一个屏幕,这对我来说是个问题,因为我希望 UFT 在没有任何用户交互的情况下自动启动。
第二个问题:即使我在服务交互弹出窗口中单击查看消息,使用此脚本 UFT 也没有启动。
我在互联网上进行了搜索,发现了先打开 UFT 的建议,所以我在上面的脚本顶部添加了这个片段:
dim commandLine, WshShell
' Define command line
commandLine = """C:\Program Files (x86)\HP\Unified Functional Testing\bin\UFT.exe"""
Set WshShell = CreateObject("WScript.Shell")
' Start QTP via command line
WshShell.Run commandLine, 8, true
' Wait a while until QTP is loaded (here 10 secs)
WScript.Sleep 10000
set WshShell=nothing
使用此脚本,在我单击交互式服务检测消息后启动 UFT,但睾丸未启动。
因此,要继续我的问题是如何避免交互式服务检测并直接启动 UFT,以及如何在启动 UFT 后开始测试。
谢谢齐德