Chrome Flags Reference

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

--gl-null

What does --gl-null do?

No description available for this flag.

Usage

CLILaunch Chrome with --gl-null using CLI

chrome --gl-null

PuppeteerLaunch Chrome with --gl-null using Puppeteer

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

PlaywrightLaunch Chrome with --gl-null using Playwright

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

SeleniumLaunch Chrome with --gl-null using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \