Chrome Flags Reference

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

--gpu-sandbox-failures-fatal

What does --gpu-sandbox-failures-fatal do?

Makes GPU sandbox failures fatal.

Usage

CLILaunch Chrome with --gpu-sandbox-failures-fatal using CLI

chrome --gpu-sandbox-failures-fatal

PuppeteerLaunch Chrome with --gpu-sandbox-failures-fatal using Puppeteer

const browser = await puppeteer.launch({
  args: ['--gpu-sandbox-failures-fatal']
});

PlaywrightLaunch Chrome with --gpu-sandbox-failures-fatal using Playwright

const browser = await chromium.launch({
  args: ['--gpu-sandbox-failures-fatal']
});

SeleniumLaunch Chrome with --gpu-sandbox-failures-fatal using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--gpu-sandbox-failures-fatal')

driver = webdriver.Chrome(options=options)