Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How to get finish time from network console tab of firefox through an api?

  • 5 답장
  • 1 이 문제를 만남
  • 11 보기
  • 최종 답변자: Sammore

more options

Through the network tab found on web developer tool option,how can i find out the finish time which is present in the summary section of network tab through an api. For example: Load time of a webpage can be calculated directly as it present in the summary section of the network tab or also through the Performance API by just mentioning the console section (performance.timing.loadEventEnd-performance.timing.navigationStart) .So i want to know is there any api or any way in which the finish time can be calculated so that it can be used in the automation.

Through the network tab found on web developer tool option,how can i find out the finish time which is present in the summary section of network tab through an api. For example: Load time of a webpage can be calculated directly as it present in the summary section of the network tab or also through the Performance API by just mentioning the console section (performance.timing.loadEventEnd-performance.timing.navigationStart) .So i want to know is there any api or any way in which the finish time can be calculated so that it can be used in the automation.

모든 댓글 (5)

more options

Anything useful in the source code?

I'm not sure if there are many around here that know about such advanced features, so maybe ask advice at the Stack Overflow forum site.

more options
more options

Oh wait, the compatibility table in that MDN article says no support in Firefox. I guess you have to use

https://developer.mozilla.org/docs/Web/API/PerformanceEntry/startTime

+

https://developer.mozilla.org/docs/Web/API/PerformanceEntry/duration

Timestamp math is a little beyond our usual mission, however.

more options

cor-el said

Anything useful in the source code? I'm not sure if there are many around here that know about such advanced features, so maybe ask advice at the Stack Overflow forum site.

How can the source code be useful ?i went through but couldn't find anything ?

more options

jscher2000 said

loadEventEnd is the finish time, isn't it? https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/loadEventEnd

NO.The loadeventEnd - navigationStart gives us the Load time.But I am searching for something which can give me finish time that also take into consideration the rendering time