this screenshot is from Postman tool while hovering over Time after get request, is there any way to get time which is highlighted in red (excluding prepare time) as Rest assured is giving the yellow highlighted time(including prepare time).Click here to view screenshot
i tried to use getTime() but that is not expected one which i need
Please post a sample snippet code how did u try.
Generally u can get the response time like below :
The above time will include below things:
Request Sending Time: The time taken to send the request to the server.
Server Processing Time: The time taken by the server to process the request.
Response Receiving Time: The time taken to receive the response from the server.