GoogleChrome/lighthouse · error · LighthouseError
CHROME_INTERSTITIAL_ERROR
CHROME_INTERSTITIAL_ERROR
Error message
Chrome prevented page load with an interstitial. Make sure you are testing the correct URL and that the server is properly responding to all requests.
What it means
Error "Chrome prevented page load with an interstitial. Make sure you are testing the correct URL and that the server is properly responding to all requests." thrown in GoogleChrome/lighthouse.
Source
Thrown at core/lib/lh-error.js:344
* Requires an additional `statusCode` field for translation.
*/
ERRORED_DOCUMENT_REQUEST: {
code: 'ERRORED_DOCUMENT_REQUEST',
message: UIStrings.pageLoadFailedWithStatusCode,
lhrRuntimeError: true,
},
/* Used when security error prevents page load.
* Requires an additional `securityMessages` field for translation.
*/
INSECURE_DOCUMENT_REQUEST: {
code: 'INSECURE_DOCUMENT_REQUEST',
message: UIStrings.pageLoadFailedInsecure,
lhrRuntimeError: true,
},
/* Used when any Chrome interstitial error prevents page load.
*/
CHROME_INTERSTITIAL_ERROR: {
code: 'CHROME_INTERSTITIAL_ERROR',
message: UIStrings.pageLoadFailedInterstitial,
lhrRuntimeError: true,
},
/* Used when the page stopped responding and did not finish loading. */
PAGE_HUNG: {
code: 'PAGE_HUNG',
message: UIStrings.pageLoadFailedHung,
lhrRuntimeError: true,
},
/* Used when the page is non-HTML. */
NOT_HTML: {
code: 'NOT_HTML',
message: UIStrings.notHtml,
lhrRuntimeError: true,
},
// Protocol internal failures
TRACING_ALREADY_STARTED: {View on GitHub (pinned to 9515cd4e58)
Solutions
- Confirm the URL loads directly in Chrome without an interstitial warning (e.g. certificate error or safe-browsing page).
- Fix the site's SSL certificate if Chrome shows a certificate interstitial.
- Make sure the server responds correctly to requests for the tested URL.
When it happens
Trigger: Raised when Chrome shows an interstitial (e.g. certificate warning or safe-browsing page) instead of loading the target URL.
Common situations: See trigger scenarios.
AI-assisted analysis of GoogleChrome/lighthouse@9515cd4e58 (2026-08-13).
Data as JSON: /api/errors/2f0cbeff0d1f6930.
Report an issue: GitHub.