Chrome Flags Reference

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

--yuy2

What does --yuy2 do?

No description available for this flag.

Usage

CLILaunch Chrome with --yuy2 using CLI

chrome --yuy2

PuppeteerLaunch Chrome with --yuy2 using Puppeteer

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

PlaywrightLaunch Chrome with --yuy2 using Playwright

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

SeleniumLaunch Chrome with --yuy2 using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \