Chrome Flags Reference

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

--host-package-label

What does --host-package-label do?

No description available for this flag.

Usage

CLILaunch Chrome with --host-package-label using CLI

chrome --host-package-label

PuppeteerLaunch Chrome with --host-package-label using Puppeteer

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

PlaywrightLaunch Chrome with --host-package-label using Playwright

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

SeleniumLaunch Chrome with --host-package-label using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--host-package-label')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID