-
Beta Was this translation helpful? Give feedback.
Answered by
adamraine
Feb 29, 2024
Replies: 1 comment
-
Don't use Using If you are using simulated throttling, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AAMRAPALI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't use
Timing.entries
. This is a log of functions run as a part of Lighthouse execution and is not related to the actual metric value.Using
lhr.audits['metrics']
will yield the actual timing measurments.firstContentfulPaint
should represent what the Lighthouse report will display and is what you should use most often because it always accounts for throttling.If you are using simulated throttling,
observedFirstContentfulPaint
will represent the unthrottled metric value.