--full-memory-crash-report
What does --full-memory-crash-report do?
Generates full memory crash dump.
Usage
CLILaunch Chrome with --full-memory-crash-report using CLI
chrome --full-memory-crash-reportPuppeteerLaunch Chrome with --full-memory-crash-report using Puppeteer
const browser = await puppeteer.launch({
args: ['--full-memory-crash-report']
});PlaywrightLaunch Chrome with --full-memory-crash-report using Playwright
const browser = await chromium.launch({
args: ['--full-memory-crash-report']
});SeleniumLaunch Chrome with --full-memory-crash-report using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--full-memory-crash-report')
driver = webdriver.Chrome(options=options)