Chrome Flags Reference

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

--no-experiments

What does --no-experiments do?

Disables all experiments set on about:flags. Does not disable about:flags itself. Useful if an experiment makes chrome crash at startup: One can start chrome with --no-experiments, disable the problematic lab at about:flags and then restart chrome without this switch again.

Usage

CLILaunch Chrome with --no-experiments using CLI

chrome --no-experiments

PuppeteerLaunch Chrome with --no-experiments using Puppeteer

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

PlaywrightLaunch Chrome with --no-experiments using Playwright

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

SeleniumLaunch Chrome with --no-experiments using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--no-experiments')

driver = webdriver.Chrome(options=options)