Chrome Flags Reference

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

--ash-enable-unified-desktop

What does --ash-enable-unified-desktop do?

Enables unified desktop mode.

Usage

CLILaunch Chrome with --ash-enable-unified-desktop using CLI

chrome --ash-enable-unified-desktop

PuppeteerLaunch Chrome with --ash-enable-unified-desktop using Puppeteer

const browser = await puppeteer.launch({
  args: ['--ash-enable-unified-desktop']
});

PlaywrightLaunch Chrome with --ash-enable-unified-desktop using Playwright

const browser = await chromium.launch({
  args: ['--ash-enable-unified-desktop']
});

SeleniumLaunch Chrome with --ash-enable-unified-desktop using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ash-enable-unified-desktop')

driver = webdriver.Chrome(options=options)

Build Conditions

CHROMEOS