Chrome Flags Reference

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

--gl-egl

What does --gl-egl do?

No description available for this flag.

Usage

CLILaunch Chrome with --gl-egl using CLI

chrome --gl-egl

PuppeteerLaunch Chrome with --gl-egl using Puppeteer

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

PlaywrightLaunch Chrome with --gl-egl using Playwright

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

SeleniumLaunch Chrome with --gl-egl using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \