Chrome Flags Reference

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

--enable

What does --enable do?

No description available for this flag.

Usage

CLILaunch Chrome with --enable using CLI

chrome --enable

PuppeteerLaunch Chrome with --enable using Puppeteer

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

PlaywrightLaunch Chrome with --enable using Playwright

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

SeleniumLaunch Chrome with --enable using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)