--disable-dawn-features
What does --disable-dawn-features do?
Set the Dawn features(toggles) disabled on the creation of Dawn devices.
Usage
CLILaunch Chrome with --disable-dawn-features using CLI
chrome --disable-dawn-featuresPuppeteerLaunch Chrome with --disable-dawn-features using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-dawn-features']
});PlaywrightLaunch Chrome with --disable-dawn-features using Playwright
const browser = await chromium.launch({
args: ['--disable-dawn-features']
});SeleniumLaunch Chrome with --disable-dawn-features using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-dawn-features')
driver = webdriver.Chrome(options=options)