Chrome Flags Reference

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

--d3d9

What does --d3d9 do?

No description available for this flag.

Usage

CLILaunch Chrome with --d3d9 using CLI

chrome --d3d9

PuppeteerLaunch Chrome with --d3d9 using Puppeteer

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

PlaywrightLaunch Chrome with --d3d9 using Playwright

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

SeleniumLaunch Chrome with --d3d9 using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--d3d9')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \