Chrome Flags Reference

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

--encrypted-reporting-url

What does --encrypted-reporting-url do?

Specifies the URL at which to upload encrypted reports.

Usage

CLILaunch Chrome with --encrypted-reporting-url using CLI

chrome --encrypted-reporting-url

PuppeteerLaunch Chrome with --encrypted-reporting-url using Puppeteer

const browser = await puppeteer.launch({
  args: ['--encrypted-reporting-url']
});

PlaywrightLaunch Chrome with --encrypted-reporting-url using Playwright

const browser = await chromium.launch({
  args: ['--encrypted-reporting-url']
});

SeleniumLaunch Chrome with --encrypted-reporting-url using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--encrypted-reporting-url')

driver = webdriver.Chrome(options=options)