yashu
4 years agoNew Member
calculate Response time
How do i calculate time taken by a step to run ?
example - My test case starts with data source step. I want to see how much time did this step took to run ?
How do i calculate time taken by a step to run ?
example - My test case starts with data source step. I want to see how much time did this step took to run ?
Hi,
You could put this in a Groovy script step for a single step....
def time = testRunner.testCase.testSteps["Some Test Request"].testRequest.response.timeTaken;
log.info("Step took " + time + "ms.");
If you want to time the whole test, then before the datasource step add a groovy step to capture the time. Then at the end of the test then capture the time again. E.g. endTime - startTime = lengthOfTest.