Is there any accurate way of finding RTs for...

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

M

Maanish Sinha

Guest
Is there any accurate way of finding RTs for exported /downloaded file using LR. Usually get_int_property provides the byte but this doesnt work many a times. Any other suggestion.??
 
Hi Manish.....we can use HTTP_INFO_DOWNLOAD_TIME to capture the time the file took to get downloaded web_get_int_property(HTTP_INFO_DOWNLOAD_TIME) Time taken by file (calculated Above)+ Response time of the transaction=Total Time of the transaction
 
Same I mentioned. I m looking for other/alternative approach.Get_int_property doesn't work many a times.Let me know if something else could b used there
 
Try using lr_start_timer(); and lr_end_timer(); Basically these are used for calculating wasted time.... but it might help :)