Chrome Flags Reference

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

--enable-dawn-features

What does --enable-dawn-features do?

Set the Dawn features(toggles) enabled on the creation of Dawn devices.

Usage

CLILaunch Chrome with --enable-dawn-features using CLI

chrome --enable-dawn-features

PuppeteerLaunch Chrome with --enable-dawn-features using Puppeteer

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

PlaywrightLaunch Chrome with --enable-dawn-features using Playwright

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

SeleniumLaunch Chrome with --enable-dawn-features using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)