Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--gpu-revision

What does --gpu-revision do?

Passes the active graphics revision info from browser process to info collection GPU process.

Usage

CLILaunch Chrome with --gpu-revision using CLI

chrome --gpu-revision

PuppeteerLaunch Chrome with --gpu-revision using Puppeteer

const browser = await puppeteer.launch({
  args: ['--gpu-revision']
});

PlaywrightLaunch Chrome with --gpu-revision using Playwright

const browser = await chromium.launch({
  args: ['--gpu-revision']
});

SeleniumLaunch Chrome with --gpu-revision using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--gpu-revision')

driver = webdriver.Chrome(options=options)