Slide 19
Slide 19 text
Throttling Strategy
Source: https://github.com/GoogleChrome/lighthouse/blob/master/docs/throttling.md
Simulated
throttling
which Lighthouse uses by default, uses a simulation of a
page load, based on the data observed in the initial
unthrottled load.
However, due to the imperfect nature of predicting alternate execution paths,
there is inherent inaccuracy
Request-level
throttling
also referred to as Applied throttling in the Audits
panel or devtools throttling in Lighthouse
configuration, is how throttling is implemented with
Chrome DevTools.
Packet-level
aka Network Shaping
able to make the most accurate network simulation. While
this approach can model real network conditions most
effectively, it also can introduce more variance than
request-level or simulated throttling. WebPageTest uses
packet-level throttling.