Chrome Flags Reference

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

--no-pings

What does --no-pings do?

Don't send hyperlink auditing pings

Usage

CLILaunch Chrome with --no-pings using CLI

chrome --no-pings

PuppeteerLaunch Chrome with --no-pings using Puppeteer

const browser = await puppeteer.launch({
  args: ['--no-pings']
});

PlaywrightLaunch Chrome with --no-pings using Playwright

const browser = await chromium.launch({
  args: ['--no-pings']
});

SeleniumLaunch Chrome with --no-pings using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--no-pings')

driver = webdriver.Chrome(options=options)