how do I get response time in a spreadsheet output step?
I want to report the time it took to execute the request that I sent. I have a Spreadsheet Input step that provides the data for requests, and a Spreadsheet output step that takes the response values and puts them into a spreadsheet for later analysis. I would like to output the time it took to execute the request along with the other data.
I've found the following line for getting the value:
testRunner.testCase.testSteps["requestName"].testRequest.response.timeTaken
I thought that, since I was inside the testCase already, perhaps I could use the following as the value of a property in the SpreadSheet output step:
${testSteps["evidenceVerificationRequest"].testReqest.response.timeTaken}
Is this right? And how do I connect that property with a column on the spreadsheet itself?
thanks