Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--vulkan

What does --vulkan do?

No description available for this flag.

Usage

CLILaunch Chrome with --vulkan using CLI

chrome --vulkan

PuppeteerLaunch Chrome with --vulkan using Puppeteer

const browser = await puppeteer.launch({
  args: ['--vulkan']
});

PlaywrightLaunch Chrome with --vulkan using Playwright

const browser = await chromium.launch({
  args: ['--vulkan']
});

SeleniumLaunch Chrome with --vulkan using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--vulkan')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \