--enable-gpu-debugging
What does --enable-gpu-debugging do?
Turn on Calling GL Error after every command.
Usage
CLILaunch Chrome with --enable-gpu-debugging using CLI
chrome --enable-gpu-debuggingPuppeteerLaunch Chrome with --enable-gpu-debugging using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-gpu-debugging']
});PlaywrightLaunch Chrome with --enable-gpu-debugging using Playwright
const browser = await chromium.launch({
args: ['--enable-gpu-debugging']
});SeleniumLaunch Chrome with --enable-gpu-debugging using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-gpu-debugging')
driver = webdriver.Chrome(options=options)