Chrome Flags Reference

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

--force-update-menu-type

What does --force-update-menu-type do?

Forces the update menu type to a specific type.

Usage

CLILaunch Chrome with --force-update-menu-type using CLI

chrome --force-update-menu-type

PuppeteerLaunch Chrome with --force-update-menu-type using Puppeteer

const browser = await puppeteer.launch({
  args: ['--force-update-menu-type']
});

PlaywrightLaunch Chrome with --force-update-menu-type using Playwright

const browser = await chromium.launch({
  args: ['--force-update-menu-type']
});

SeleniumLaunch Chrome with --force-update-menu-type using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--force-update-menu-type')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID