Chrome Flags Reference

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

--use-adapter-luid

What does --use-adapter-luid do?

Initialize the GPU process using the adapter with the specified LUID. This is only used on Windows, as LUID is a Windows specific structure.

Usage

CLILaunch Chrome with --use-adapter-luid using CLI

chrome --use-adapter-luid

PuppeteerLaunch Chrome with --use-adapter-luid using Puppeteer

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

PlaywrightLaunch Chrome with --use-adapter-luid using Playwright

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

SeleniumLaunch Chrome with --use-adapter-luid using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--use-adapter-luid')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \