Chrome Flags Reference

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

--enable-dom-distiller

What does --enable-dom-distiller do?

No description available for this flag.

Usage

CLILaunch Chrome with --enable-dom-distiller using CLI

chrome --enable-dom-distiller

PuppeteerLaunch Chrome with --enable-dom-distiller using Puppeteer

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

PlaywrightLaunch Chrome with --enable-dom-distiller using Playwright

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

SeleniumLaunch Chrome with --enable-dom-distiller using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--enable-dom-distiller')

driver = webdriver.Chrome(options=options)