Chrome Flags Reference

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

--default

What does --default do?

No description available for this flag.

Usage

CLILaunch Chrome with --default using CLI

chrome --default

PuppeteerLaunch Chrome with --default using Puppeteer

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

PlaywrightLaunch Chrome with --default using Playwright

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

SeleniumLaunch Chrome with --default using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \