Chrome Flags Reference

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

--disable-explicit-dma-fences

What does --disable-explicit-dma-fences do?

Disable explicit DMA-fences

Usage

CLILaunch Chrome with --disable-explicit-dma-fences using CLI

chrome --disable-explicit-dma-fences

PuppeteerLaunch Chrome with --disable-explicit-dma-fences using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-explicit-dma-fences']
});

PlaywrightLaunch Chrome with --disable-explicit-dma-fences using Playwright

const browser = await chromium.launch({
  args: ['--disable-explicit-dma-fences']
});

SeleniumLaunch Chrome with --disable-explicit-dma-fences using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-explicit-dma-fences')

driver = webdriver.Chrome(options=options)