--pseudonymization-salt-handle
What does --pseudonymization-salt-handle do?
Handle to shared memory containing the pseudonymization salt, passed to child processes at launch. See https://crbug.com/40850085.
Usage
CLILaunch Chrome with --pseudonymization-salt-handle using CLI
chrome --pseudonymization-salt-handlePuppeteerLaunch Chrome with --pseudonymization-salt-handle using Puppeteer
const browser = await puppeteer.launch({
args: ['--pseudonymization-salt-handle']
});PlaywrightLaunch Chrome with --pseudonymization-salt-handle using Playwright
const browser = await chromium.launch({
args: ['--pseudonymization-salt-handle']
});SeleniumLaunch Chrome with --pseudonymization-salt-handle using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--pseudonymization-salt-handle')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK