Chrome Flags Reference

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

--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-timeout

PuppeteerLaunch 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)