Chrome Flags Reference

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

--disable-timeouts-for-profiling

What does --disable-timeouts-for-profiling do?

Disable timeouts that may cause the browser to die when running slowly. This is useful if running with profiling (such as debug malloc).

Usage

CLILaunch Chrome with --disable-timeouts-for-profiling using CLI

chrome --disable-timeouts-for-profiling

PuppeteerLaunch Chrome with --disable-timeouts-for-profiling using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-timeouts-for-profiling']
});

PlaywrightLaunch Chrome with --disable-timeouts-for-profiling using Playwright

const browser = await chromium.launch({
  args: ['--disable-timeouts-for-profiling']
});

SeleniumLaunch Chrome with --disable-timeouts-for-profiling using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-timeouts-for-profiling')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISKANDROID