Chrome Flags Reference

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

--vulkan-heap-memory-limit-mb

What does --vulkan-heap-memory-limit-mb do?

Specifies the heap limit for Vulkan memory.

Usage

CLILaunch Chrome with --vulkan-heap-memory-limit-mb using CLI

chrome --vulkan-heap-memory-limit-mb

PuppeteerLaunch Chrome with --vulkan-heap-memory-limit-mb using Puppeteer

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

PlaywrightLaunch Chrome with --vulkan-heap-memory-limit-mb using Playwright

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

SeleniumLaunch Chrome with --vulkan-heap-memory-limit-mb using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--vulkan-heap-memory-limit-mb')

driver = webdriver.Chrome(options=options)