您好我正在尝试使用Test Batch Runner运行QTP脚本。此工具的问题在于它覆盖了结果,并且只保存了最后的脚本结果。所以我写了一个小片段,在脚本成功运行后将结果移动到其他文件夹。但问题是,我无法打开这些结果,并说它无法加载结果。我正在尝试使用QTP 11。 我的代码段
a=Environment.Value("ResultDir")
SystemUtil.Run "iexplore.exe", "http://www.google.com"
currentResultDir=Environment.Value("TestName")
Set qtpResultDir=Environment.Value("Scripting.FileSystemObject")
b="C:\result_dir"
qtpResultDir.CreateFolder(b)
qtpResultDir.CopyFolder a,b,True