我有一些Groovy脚本,该脚本循环遍历当前测试用例中的测试步骤,并汇总每个步骤的响应时间,并将其存储在测试用例的自定义属性中。
我现在正尝试对每个测试步骤的请求和响应大小执行相同的操作,但似乎无法使其正常工作。
def TestCase = testRunner.getTestCase()
def CurrentTestStep = context.testCase.getTestStepAt(context.getCurrentStepIndex()).getLabel()
def StepList = TestCase.getTestStepList().name - CurrentTestStep
def ResponseTime = 0
def RequestSize = 0
def ResponseSize = 0
StepList.each
{ Step ->
try
{
ResponseTime = ResponseTime + testRunner.testCase.testSteps[Step].testRequest.response.timeTaken
}
catch(Exception expObj)
{
}
}
testRunner.testCase.setPropertyValue("Test_Case_Response_Time", ResponseTime.toString())
答案 0 :(得分:1)
您可以在下面声明“响应大小”。
Result
完整代码为
log.info "Size of " + Step + "is " + testRunner.testCase.testSteps[Step].testRequest.response.responseSize
对于请求大小,我无法找到要获取大小的语句。将添加一次。