--gpu-startup-dialog
What does --gpu-startup-dialog do?
Causes the GPU process to display a dialog on launch.
Usage
CLILaunch Chrome with --gpu-startup-dialog using CLI
chrome --gpu-startup-dialogPuppeteerLaunch Chrome with --gpu-startup-dialog using Puppeteer
const browser = await puppeteer.launch({
args: ['--gpu-startup-dialog']
});PlaywrightLaunch Chrome with --gpu-startup-dialog using Playwright
const browser = await chromium.launch({
args: ['--gpu-startup-dialog']
});SeleniumLaunch Chrome with --gpu-startup-dialog using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--gpu-startup-dialog')
driver = webdriver.Chrome(options=options)