Chrome Flags Reference

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

--dawn

What does --dawn do?

No description available for this flag.

Usage

CLILaunch Chrome with --dawn using CLI

chrome --dawn

PuppeteerLaunch Chrome with --dawn using Puppeteer

const browser = await puppeteer.launch({
  args: ['--dawn']
});

PlaywrightLaunch Chrome with --dawn using Playwright

const browser = await chromium.launch({
  args: ['--dawn']
});

SeleniumLaunch Chrome with --dawn using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--dawn')

driver = webdriver.Chrome(options=options)