Chrome Flags Reference

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

--gpu-blocklist-test-group

What does --gpu-blocklist-test-group do?

Select a different set of GPU blocklist entries with the specified test_group ID.

Usage

CLILaunch Chrome with --gpu-blocklist-test-group using CLI

chrome --gpu-blocklist-test-group

PuppeteerLaunch Chrome with --gpu-blocklist-test-group using Puppeteer

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

PlaywrightLaunch Chrome with --gpu-blocklist-test-group using Playwright

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

SeleniumLaunch Chrome with --gpu-blocklist-test-group using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--gpu-blocklist-test-group')

driver = webdriver.Chrome(options=options)