Chrome Flags Reference

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

--egl

What does --egl do?

No description available for this flag.

Usage

CLILaunch Chrome with --egl using CLI

chrome --egl

PuppeteerLaunch Chrome with --egl using Puppeteer

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

PlaywrightLaunch Chrome with --egl using Playwright

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

SeleniumLaunch Chrome with --egl using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \