Chrome Flags Reference

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

--disabled

What does --disabled do?

disabled: touch events are disabled.

Usage

CLILaunch Chrome with --disabled using CLI

chrome --disabled

PuppeteerLaunch Chrome with --disabled using Puppeteer

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

PlaywrightLaunch Chrome with --disabled using Playwright

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

SeleniumLaunch Chrome with --disabled using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disabled')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISK