--sandbox-ipc
What does --sandbox-ipc do?
Causes the process to run as a sandbox IPC subprocess.
Usage
CLILaunch Chrome with --sandbox-ipc using CLI
chrome --sandbox-ipcPuppeteerLaunch Chrome with --sandbox-ipc using Puppeteer
const browser = await puppeteer.launch({
args: ['--sandbox-ipc']
});PlaywrightLaunch Chrome with --sandbox-ipc using Playwright
const browser = await chromium.launch({
args: ['--sandbox-ipc']
});SeleniumLaunch Chrome with --sandbox-ipc using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--sandbox-ipc')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK