--enable-blink-features
What does --enable-blink-features do?
Enable one or more Blink runtime-enabled features. Use names from runtime_enabled_features.json5, separated by commas. Applied before kDisableBlinkFeatures, and after other flags that change these features.
Usage
CLILaunch Chrome with --enable-blink-features using CLI
chrome --enable-blink-featuresPuppeteerLaunch Chrome with --enable-blink-features using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-blink-features']
});PlaywrightLaunch Chrome with --enable-blink-features using Playwright
const browser = await chromium.launch({
args: ['--enable-blink-features']
});SeleniumLaunch Chrome with --enable-blink-features using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-blink-features')
driver = webdriver.Chrome(options=options)