Chrome Flags Reference

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

--edge-touch-filtering

What does --edge-touch-filtering do?

Tells Chrome to do edge touch filtering. Useful for convertible tablet.

Usage

CLILaunch Chrome with --edge-touch-filtering using CLI

chrome --edge-touch-filtering

PuppeteerLaunch Chrome with --edge-touch-filtering using Puppeteer

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

PlaywrightLaunch Chrome with --edge-touch-filtering using Playwright

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

SeleniumLaunch Chrome with --edge-touch-filtering using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--edge-touch-filtering')

driver = webdriver.Chrome(options=options)

Build Conditions

OZONE