Chrome Flags Reference

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

--force-high-performance-gpu

What does --force-high-performance-gpu do?

No description available for this flag.

Usage

CLILaunch Chrome with --force-high-performance-gpu using CLI

chrome --force-high-performance-gpu

PuppeteerLaunch Chrome with --force-high-performance-gpu using Puppeteer

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

PlaywrightLaunch Chrome with --force-high-performance-gpu using Playwright

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

SeleniumLaunch Chrome with --force-high-performance-gpu using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--force-high-performance-gpu')

driver = webdriver.Chrome(options=options)