-
Beta Was this translation helpful? Give feedback.
Answered by
adamraine
Mar 29, 2023
Replies: 1 comment 1 reply
-
You can extend how long Lighthouse waits after the page load event using a custom config: export default {
extends: 'lighthouse:default',
settings: {
// This will control how long Lighthouse needs to wait after the load event
pauseAfterLoadMs: 10_000,
}
} Feel free to tune the value of |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jpx100
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can extend how long Lighthouse waits after the page load event using a custom config:
Feel free to tune the value of
pauseAfterLoadMs
yourself, I just chose 10s as a starting point.