Chrome Flags Reference

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

--dawn-metal

What does --dawn-metal do?

No description available for this flag.

Usage

CLILaunch Chrome with --dawn-metal using CLI

chrome --dawn-metal

PuppeteerLaunch Chrome with --dawn-metal using Puppeteer

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

PlaywrightLaunch Chrome with --dawn-metal using Playwright

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

SeleniumLaunch Chrome with --dawn-metal using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)