Chrome Flags Reference

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

--gles-null

What does --gles-null do?

No description available for this flag.

Usage

CLILaunch Chrome with --gles-null using CLI

chrome --gles-null

PuppeteerLaunch Chrome with --gles-null using Puppeteer

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

PlaywrightLaunch Chrome with --gles-null using Playwright

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

SeleniumLaunch Chrome with --gles-null using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \