Chrome Flags Reference

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

--renderer-client-id

What does --renderer-client-id do?

No description available for this flag.

Usage

CLILaunch Chrome with --renderer-client-id using CLI

chrome --renderer-client-id

PuppeteerLaunch Chrome with --renderer-client-id using Puppeteer

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

PlaywrightLaunch Chrome with --renderer-client-id using Playwright

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

SeleniumLaunch Chrome with --renderer-client-id using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--renderer-client-id')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISK