Chrome Flags Reference

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

--gpu-driver-bug-list-test-group

What does --gpu-driver-bug-list-test-group do?

Enable an extra set of GPU driver bug list entries with the specified test_group ID. Note the default test group (group 0) is still active.

Usage

CLILaunch Chrome with --gpu-driver-bug-list-test-group using CLI

chrome --gpu-driver-bug-list-test-group

PuppeteerLaunch Chrome with --gpu-driver-bug-list-test-group using Puppeteer

const browser = await puppeteer.launch({
  args: ['--gpu-driver-bug-list-test-group']
});

PlaywrightLaunch Chrome with --gpu-driver-bug-list-test-group using Playwright

const browser = await chromium.launch({
  args: ['--gpu-driver-bug-list-test-group']
});

SeleniumLaunch Chrome with --gpu-driver-bug-list-test-group using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--gpu-driver-bug-list-test-group')

driver = webdriver.Chrome(options=options)