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