Chrome Flags Reference

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

--openxr

What does --openxr do?

No description available for this flag.

Usage

CLILaunch Chrome with --openxr using CLI

chrome --openxr

PuppeteerLaunch Chrome with --openxr using Puppeteer

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

PlaywrightLaunch Chrome with --openxr using Playwright

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

SeleniumLaunch Chrome with --openxr using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISK