Chrome Flags Reference

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

--disable-oopr-debug-crash-dump

What does --disable-oopr-debug-crash-dump do?

Disables debug crash dumps for OOPR.

Usage

CLILaunch Chrome with --disable-oopr-debug-crash-dump using CLI

chrome --disable-oopr-debug-crash-dump

PuppeteerLaunch Chrome with --disable-oopr-debug-crash-dump using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-oopr-debug-crash-dump']
});

PlaywrightLaunch Chrome with --disable-oopr-debug-crash-dump using Playwright

const browser = await chromium.launch({
  args: ['--disable-oopr-debug-crash-dump']
});

SeleniumLaunch Chrome with --disable-oopr-debug-crash-dump using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-oopr-debug-crash-dump')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISKANDROID