--disable-lcd-text
What does --disable-lcd-text do?
Disables LCD text.
Usage
CLILaunch Chrome with --disable-lcd-text using CLI
chrome --disable-lcd-textPuppeteerLaunch Chrome with --disable-lcd-text using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-lcd-text']
});PlaywrightLaunch Chrome with --disable-lcd-text using Playwright
const browser = await chromium.launch({
args: ['--disable-lcd-text']
});SeleniumLaunch Chrome with --disable-lcd-text using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-lcd-text')
driver = webdriver.Chrome(options=options)