Chrome Flags Reference

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

--gles

What does --gles do?

No description available for this flag.

Usage

CLILaunch Chrome with --gles using CLI

chrome --gles

PuppeteerLaunch Chrome with --gles using Puppeteer

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

PlaywrightLaunch Chrome with --gles using Playwright

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

SeleniumLaunch Chrome with --gles using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \