Chrome Flags Reference

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

--ipc-fuzzer-testcase

What does --ipc-fuzzer-testcase do?

Specifies the testcase used by the IPC fuzzer.

Usage

CLILaunch Chrome with --ipc-fuzzer-testcase using CLI

chrome --ipc-fuzzer-testcase

PuppeteerLaunch Chrome with --ipc-fuzzer-testcase using Puppeteer

const browser = await puppeteer.launch({
  args: ['--ipc-fuzzer-testcase']
});

PlaywrightLaunch Chrome with --ipc-fuzzer-testcase using Playwright

const browser = await chromium.launch({
  args: ['--ipc-fuzzer-testcase']
});

SeleniumLaunch Chrome with --ipc-fuzzer-testcase using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ipc-fuzzer-testcase')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISKANDROIDENABLE_IPC_FUZZER