Chrome Flags Reference

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

--dawn-opengles

What does --dawn-opengles do?

No description available for this flag.

Usage

CLILaunch Chrome with --dawn-opengles using CLI

chrome --dawn-opengles

PuppeteerLaunch Chrome with --dawn-opengles using Puppeteer

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

PlaywrightLaunch Chrome with --dawn-opengles using Playwright

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

SeleniumLaunch Chrome with --dawn-opengles using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--dawn-opengles')

driver = webdriver.Chrome(options=options)