Chrome Flags Reference

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

--enable-crash-reporter

What does --enable-crash-reporter do?

Indicates that crash reporting should be enabled. On platforms where helper processes cannot access to files needed to make this decision, this flag is generated internally.

Usage

CLILaunch Chrome with --enable-crash-reporter using CLI

chrome --enable-crash-reporter

PuppeteerLaunch Chrome with --enable-crash-reporter using Puppeteer

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

PlaywrightLaunch Chrome with --enable-crash-reporter using Playwright

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

SeleniumLaunch Chrome with --enable-crash-reporter using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)