--ipc-connection-timeout
What does --ipc-connection-timeout do?
Overrides the timeout, in seconds, that a child process waits for a connection from the browser before killing itself.
Usage
CLILaunch Chrome with --ipc-connection-timeout using CLI
chrome --ipc-connection-timeoutPuppeteerLaunch Chrome with --ipc-connection-timeout using Puppeteer
const browser = await puppeteer.launch({
args: ['--ipc-connection-timeout']
});PlaywrightLaunch Chrome with --ipc-connection-timeout using Playwright
const browser = await chromium.launch({
args: ['--ipc-connection-timeout']
});SeleniumLaunch Chrome with --ipc-connection-timeout using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--ipc-connection-timeout')
driver = webdriver.Chrome(options=options)