I needed to check a webpage's response time, so I visited the site on Chrome, opened Devtools and switched to the Network tab to check the response time:
As you can see, there are two times: The first one is Finish
and the second one is Load
.
I think Finish
is the time taken to load the whole page with all the resources including delays, but what is Load
? I thought if I add all these times together I would get the time for Load
but this isn't the case.
What would be considered the response time of this website, Load
or Finish
?