--renderer-cmd-prefix
What does --renderer-cmd-prefix do?
The contents of this flag are prepended to the renderer command line. Useful values might be "valgrind" or "xterm -e gdb --args".
Usage
CLILaunch Chrome with --renderer-cmd-prefix using CLI
chrome --renderer-cmd-prefixPuppeteerLaunch Chrome with --renderer-cmd-prefix using Puppeteer
const browser = await puppeteer.launch({
args: ['--renderer-cmd-prefix']
});PlaywrightLaunch Chrome with --renderer-cmd-prefix using Playwright
const browser = await chromium.launch({
args: ['--renderer-cmd-prefix']
});SeleniumLaunch Chrome with --renderer-cmd-prefix using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--renderer-cmd-prefix')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK