I am recording web performance test on web page, and I need to count time since I click on button until the next wanted page is rendered. The problem is that I have a lot of client side logic that is triggered on the button click. So, some time is past while javascript is executing and after that request is being sent to server.
web performance test records only web request between client and server, javascript time is never recorded.
I need to record actual time since I click to button to next page opening(including javascript time)
Can that be done in Visual Studio Web performance? If not, is there some alternative?
Thanks a lot.