How to configure triggered of the end of a navigation? #15898
Replies: 1 comment
-
You can't configure a specific time because there are certain conditions (e.g. network idle) that Lighthouse needs before it can finish auditing the page. Lighthouse navigation mode will always wait for network idle before finishing. So FWIW the inflight requests on your page are considered critical requests by Lighthouse. Lighthouse considers the network to be idle when there are 0 inflight critical requests AND <=2 inflight non-critical requests. So if you lower the priority of those requests (using something like |
Beta Was this translation helpful? Give feedback.
-
How can I configure a navigation audit to end at a specific time?
Lets say i have an application that when you navigate to it, it loads the page and continuously updates the content inside of it.
How would i be able to do something like this?
The issue is that after that moment were the content is loaded a bunch of things are still happening.
I receive in information from a socket and condinously update the date so it does not really consider the site has finished loading and i get this type of message:
This is an example url where i have experiences this issue: https://betjack.com
Beta Was this translation helpful? Give feedback.
All reactions