Chrome Flags Reference

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

--disable-breakpad

What does --disable-breakpad do?

Disables the crash reporting.

Usage

CLILaunch Chrome with --disable-breakpad using CLI

chrome --disable-breakpad

PuppeteerLaunch Chrome with --disable-breakpad using Puppeteer

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

PlaywrightLaunch Chrome with --disable-breakpad using Playwright

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

SeleniumLaunch Chrome with --disable-breakpad using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-breakpad')

driver = webdriver.Chrome(options=options)