Chrome Flags Reference

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

--device-management-url

What does --device-management-url do?

Specifies the URL at which to communicate with the device management backend to fetch configuration policies and perform other device tasks.

Usage

CLILaunch Chrome with --device-management-url using CLI

chrome --device-management-url

PuppeteerLaunch Chrome with --device-management-url using Puppeteer

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

PlaywrightLaunch Chrome with --device-management-url using Playwright

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

SeleniumLaunch Chrome with --device-management-url using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--device-management-url')

driver = webdriver.Chrome(options=options)