Chrome Flags Reference

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

--disable-angle-features

What does --disable-angle-features do?

Disables specified comma separated ANGLE features if found.

Usage

CLILaunch Chrome with --disable-angle-features using CLI

chrome --disable-angle-features

PuppeteerLaunch Chrome with --disable-angle-features using Puppeteer

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

PlaywrightLaunch Chrome with --disable-angle-features using Playwright

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

SeleniumLaunch Chrome with --disable-angle-features using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-angle-features')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \