Chrome Flags Reference

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

--passthrough

What does --passthrough do?

No description available for this flag.

Usage

CLILaunch Chrome with --passthrough using CLI

chrome --passthrough

PuppeteerLaunch Chrome with --passthrough using Puppeteer

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

PlaywrightLaunch Chrome with --passthrough using Playwright

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

SeleniumLaunch Chrome with --passthrough using Selenium

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \