--gpu-process
What does --gpu-process do?
Makes this process a GPU sub-process.
Usage
CLILaunch Chrome with --gpu-process using CLI
chrome --gpu-processPuppeteerLaunch Chrome with --gpu-process using Puppeteer
const browser = await puppeteer.launch({
args: ['--gpu-process']
});PlaywrightLaunch Chrome with --gpu-process using Playwright
const browser = await chromium.launch({
args: ['--gpu-process']
});SeleniumLaunch Chrome with --gpu-process using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--gpu-process')
driver = webdriver.Chrome(options=options)