--browser-subprocess-path
What does --browser-subprocess-path do?
Path to the exe to run for the renderer and plugin subprocesses.
Usage
CLILaunch Chrome with --browser-subprocess-path using CLI
chrome --browser-subprocess-pathPuppeteerLaunch Chrome with --browser-subprocess-path using Puppeteer
const browser = await puppeteer.launch({
args: ['--browser-subprocess-path']
});PlaywrightLaunch Chrome with --browser-subprocess-path using Playwright
const browser = await chromium.launch({
args: ['--browser-subprocess-path']
});SeleniumLaunch Chrome with --browser-subprocess-path using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--browser-subprocess-path')
driver = webdriver.Chrome(options=options)