Chrome Flags Reference

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

--dawn-d3d12

What does --dawn-d3d12 do?

No description available for this flag.

Usage

CLILaunch Chrome with --dawn-d3d12 using CLI

chrome --dawn-d3d12

PuppeteerLaunch Chrome with --dawn-d3d12 using Puppeteer

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

PlaywrightLaunch Chrome with --dawn-d3d12 using Playwright

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

SeleniumLaunch Chrome with --dawn-d3d12 using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)