--disabled
What does --disabled do?
disabled: touch events are disabled.
Usage
CLILaunch Chrome with --disabled using CLI
chrome --disabledPuppeteerLaunch 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