Chrome Flags Reference

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

--null

What does --null do?

No description available for this flag.

Usage

CLILaunch Chrome with --null using CLI

chrome --null

PuppeteerLaunch Chrome with --null using Puppeteer

const browser = await puppeteer.launch({
  args: ['--null']
});

PlaywrightLaunch Chrome with --null using Playwright

const browser = await chromium.launch({
  args: ['--null']
});

SeleniumLaunch Chrome with --null using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--null')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \