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