Chrome Flags Reference

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

--angle

What does --angle do?

No description available for this flag.

Usage

CLILaunch Chrome with --angle using CLI

chrome --angle

PuppeteerLaunch Chrome with --angle using Puppeteer

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

PlaywrightLaunch Chrome with --angle using Playwright

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

SeleniumLaunch Chrome with --angle using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \