--disable-skia-graphite
What does --disable-skia-graphite do?
Force disabling/enabling Skia Graphite. Disabling will take precedence over enabling if both are specified.
Usage
CLILaunch Chrome with --disable-skia-graphite using CLI
chrome --disable-skia-graphitePuppeteerLaunch Chrome with --disable-skia-graphite using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-skia-graphite']
});PlaywrightLaunch Chrome with --disable-skia-graphite using Playwright
const browser = await chromium.launch({
args: ['--disable-skia-graphite']
});SeleniumLaunch Chrome with --disable-skia-graphite using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-skia-graphite')
driver = webdriver.Chrome(options=options)