--gpu-driver-version
What does --gpu-driver-version do?
Passes the active graphics driver version from browser process to info collection GPU process.
Usage
CLILaunch Chrome with --gpu-driver-version using CLI
chrome --gpu-driver-versionPuppeteerLaunch Chrome with --gpu-driver-version using Puppeteer
const browser = await puppeteer.launch({
args: ['--gpu-driver-version']
});PlaywrightLaunch Chrome with --gpu-driver-version using Playwright
const browser = await chromium.launch({
args: ['--gpu-driver-version']
});SeleniumLaunch Chrome with --gpu-driver-version using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--gpu-driver-version')
driver = webdriver.Chrome(options=options)