Chrome Flags Reference

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

--dawn-d3d11

What does --dawn-d3d11 do?

No description available for this flag.

Usage

CLILaunch Chrome with --dawn-d3d11 using CLI

chrome --dawn-d3d11

PuppeteerLaunch Chrome with --dawn-d3d11 using Puppeteer

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

PlaywrightLaunch Chrome with --dawn-d3d11 using Playwright

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

SeleniumLaunch Chrome with --dawn-d3d11 using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)