--disable-features
What does --disable-features do?
Comma-separated list of feature names to disable. See also kEnableFeatures.
Usage
CLILaunch Chrome with --disable-features using CLI
chrome --disable-featuresPuppeteerLaunch Chrome with --disable-features using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-features']
});PlaywrightLaunch Chrome with --disable-features using Playwright
const browser = await chromium.launch({
args: ['--disable-features']
});SeleniumLaunch Chrome with --disable-features using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-features')
driver = webdriver.Chrome(options=options)