gpt4 book ai didi

vbscript - 将测试参数从 .vbs 传递到 QTP 测试

转载 作者:行者123 更新时间:2023-12-03 06:24:11 30 4
gpt4 key购买 nike

如何从在 QTP 中启动测试的 .vbs 文件获取测试参数?我可以在没有任何输入参数的情况下从 .vbs 文件运行测试,但我似乎找不到将参数从文件获取到测试的方法。

这是我到目前为止所拥有的:

Set qtp = CreateObject("QuickTest.Application")

'Launch QTP
qtp.Launch

'Set QTP visible
qtp.Visible = True

'Run Mode - Fast
qtp.Options.Run.RunMode = "Fast"

'View Results - True
qtp.Options.Run.ViewResults = True

'Open the test
qtp.open "C:\MY\TEST", True

Set test = qtp.Test

Set params = test.ParameterDefinitions.GetParameters()

parameter1 = "par1"
parameter2 = "par2"

params.Item(par1).Value = "This is my first parameter"
params.Item(par2).Value = "This is my second parameter"

Set qtpResultsLocation = CreateObject("QuickTest.RunResultsOptions")

qtpResultsLocation.ResultsLocation = "C:\SOME\RESULTS\FOLDER"
test.Run qtpResultsLocation

test.Close

Msgbox("Closed test.. closing application")
qtp.quit

我觉得需要某种test.ParameterDefinitions.SetParameters(),但这就是我在网上找到的全部内容。

最佳答案

test.Run qtpResultsLocation 实际上并没有传递参数。我需要编写 test.Run qtpResultsLocation, True, params

关于vbscript - 将测试参数从 .vbs 传递到 QTP 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24808065/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com