Chrome Flags Reference

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

--disable-d3d11-warp

What does --disable-d3d11-warp do?

Explicitly disable D3D11 WARP fallback. Some test suites prefer falling back to swiftshader.

Usage

CLILaunch Chrome with --disable-d3d11-warp using CLI

chrome --disable-d3d11-warp

PuppeteerLaunch Chrome with --disable-d3d11-warp using Puppeteer

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

PlaywrightLaunch Chrome with --disable-d3d11-warp using Playwright

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

SeleniumLaunch Chrome with --disable-d3d11-warp using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-d3d11-warp')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \