Chrome Flags Reference

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

--enable-angle-features

What does --enable-angle-features do?

ANGLE features are defined per-backend in third_party/angle/include/platform Enables specified comma separated ANGLE features if found.

Usage

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

chrome --enable-angle-features

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

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

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

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

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

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \