- I want to test if my GET request is more that 1minutes, so i can verify the test pass or failed
- and i’ve got solution from this Using response time to verification
but i don’t know how to implement getElapsedTime() method from this doc ResponseObject (Katalon Studio API Specification) to katalon script
First, you have to learn how to send the request, see:
Once sent, everything needed is in the response object so you simply grab it:
elapsedTime = response.getElapsedTime()
1 Like