--hide-crash-restore-bubble
What does --hide-crash-restore-bubble do?
Does not show the crash restore bubble when the browser is started during the system startup phase in ChromeOS, if the ChromeOS full restore feature is enabled, because the ChromeOS full restore notification is shown for the user to select restore or not.
Usage
CLILaunch Chrome with --hide-crash-restore-bubble using CLI
chrome --hide-crash-restore-bubblePuppeteerLaunch Chrome with --hide-crash-restore-bubble using Puppeteer
const browser = await puppeteer.launch({
args: ['--hide-crash-restore-bubble']
});PlaywrightLaunch Chrome with --hide-crash-restore-bubble using Playwright
const browser = await chromium.launch({
args: ['--hide-crash-restore-bubble']
});SeleniumLaunch Chrome with --hide-crash-restore-bubble using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--hide-crash-restore-bubble')
driver = webdriver.Chrome(options=options)