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