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