--arcore
What does --arcore do?
The following are the runtimes that WebXr supports.
Usage
CLILaunch Chrome with --arcore using CLI
chrome --arcorePuppeteerLaunch Chrome with --arcore using Puppeteer
const browser = await puppeteer.launch({
args: ['--arcore']
});PlaywrightLaunch Chrome with --arcore using Playwright
const browser = await chromium.launch({
args: ['--arcore']
});SeleniumLaunch Chrome with --arcore using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--arcore')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK