Chrome Flags Reference

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

--disable-seccomp-filter-sandbox

What does --disable-seccomp-filter-sandbox do?

Disable the seccomp filter sandbox (seccomp-bpf) (Linux only).

Usage

CLILaunch Chrome with --disable-seccomp-filter-sandbox using CLI

chrome --disable-seccomp-filter-sandbox

PuppeteerLaunch Chrome with --disable-seccomp-filter-sandbox using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-seccomp-filter-sandbox']
});

PlaywrightLaunch Chrome with --disable-seccomp-filter-sandbox using Playwright

const browser = await chromium.launch({
  args: ['--disable-seccomp-filter-sandbox']
});

SeleniumLaunch Chrome with --disable-seccomp-filter-sandbox using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-seccomp-filter-sandbox')

driver = webdriver.Chrome(options=options)