--metal
What does --metal do?
No description available for this flag.
Usage
CLILaunch Chrome with --metal using CLI
chrome --metalPuppeteerLaunch Chrome with --metal using Puppeteer
const browser = await puppeteer.launch({
args: ['--metal']
});PlaywrightLaunch Chrome with --metal using Playwright
const browser = await chromium.launch({
args: ['--metal']
});SeleniumLaunch Chrome with --metal using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--metal')
driver = webdriver.Chrome(options=options)