Chrome Flags Reference

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

--gpu-vendor-id

What does --gpu-vendor-id do?

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

Usage

CLILaunch Chrome with --gpu-vendor-id using CLI

chrome --gpu-vendor-id

PuppeteerLaunch Chrome with --gpu-vendor-id using Puppeteer

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

PlaywrightLaunch Chrome with --gpu-vendor-id using Playwright

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

SeleniumLaunch Chrome with --gpu-vendor-id using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--gpu-vendor-id')

driver = webdriver.Chrome(options=options)