Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--log-missing-unload-ack

What does --log-missing-unload-ack do?

Log an error whenever the unload timeout for a render frame is exceeded.

Usage

CLILaunch Chrome with --log-missing-unload-ack using CLI

chrome --log-missing-unload-ack

PuppeteerLaunch Chrome with --log-missing-unload-ack using Puppeteer

const browser = await puppeteer.launch({
  args: ['--log-missing-unload-ack']
});

PlaywrightLaunch Chrome with --log-missing-unload-ack using Playwright

const browser = await chromium.launch({
  args: ['--log-missing-unload-ack']
});

SeleniumLaunch Chrome with --log-missing-unload-ack using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--log-missing-unload-ack')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISK