Chrome Flags Reference

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

--disable-cancel-all-touches

What does --disable-cancel-all-touches do?

Disable CancelAllTouches() function for the implementation on cancel single touches.

Usage

CLILaunch Chrome with --disable-cancel-all-touches using CLI

chrome --disable-cancel-all-touches

PuppeteerLaunch Chrome with --disable-cancel-all-touches using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-cancel-all-touches']
});

PlaywrightLaunch Chrome with --disable-cancel-all-touches using Playwright

const browser = await chromium.launch({
  args: ['--disable-cancel-all-touches']
});

SeleniumLaunch Chrome with --disable-cancel-all-touches using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-cancel-all-touches')

driver = webdriver.Chrome(options=options)

Build Conditions

OZONE