Chrome Flags Reference

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

--gles-egl

What does --gles-egl do?

No description available for this flag.

Usage

CLILaunch Chrome with --gles-egl using CLI

chrome --gles-egl

PuppeteerLaunch Chrome with --gles-egl using Puppeteer

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

PlaywrightLaunch Chrome with --gles-egl using Playwright

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

SeleniumLaunch Chrome with --gles-egl using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \