Chrome Flags Reference

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

--enable-features

What does --enable-features do?

Comma-separated list of feature names to enable. See also kDisableFeatures.

Usage

CLILaunch Chrome with --enable-features using CLI

chrome --enable-features

PuppeteerLaunch Chrome with --enable-features using Puppeteer

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

PlaywrightLaunch Chrome with --enable-features using Playwright

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

SeleniumLaunch Chrome with --enable-features using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)