Chrome's Network Tab is so close to telling me everything I need. The red mark on the image below is the very end of loading the page, resources and ajax requests, but it doesn't actually tell me what the figure is.

It looks like I have to guess that it's 1.50 seconds or so.

Is there anywhere here that tells me that figure in seconds?

Chrome Network Tab

有帮助吗?

解决方案

Found it. The bar at the very bottom indicates the total load time in text form:

Arrow indicates total load time

其他提示

I don't believe so. Though, if you had access to those requests, you could query the timestamp new Date().getTime() as early in the page as possible, and then query the timestamp again after your request is received and get the difference of the two in milliseconds.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top