Automation for website application trace response time

Hi Guys,

I’m new in my job as an RPA developer,

Is there a way for uipath to trace response time of a web page and trace response time of a Rest call?

Thanks!

You have to implement logic and you can get it .

  1. the code part where you are entering the page , get time there using datetime.now
  2. code part where you are leaving the page , get time there in another variable .
  3. subtract both time and you will get the required time duration .
    Hope it will help !!

Hi Syedabidraza,

Thank you for your time in responding about my question ,

For the part

  1. the code part where you are entering the page , get time there using datetime.now

Can you please suggest what activity should I use?

To avoid to remove the timing spent from UiPath to check that the page is completely opened

Thanks!