Chrome Flags Reference

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

--privet-ipv6-only

What does --privet-ipv6-only do?

Use IPv6 only for privet HTTP.

Usage

CLILaunch Chrome with --privet-ipv6-only using CLI

chrome --privet-ipv6-only

PuppeteerLaunch Chrome with --privet-ipv6-only using Puppeteer

const browser = await puppeteer.launch({
  args: ['--privet-ipv6-only']
});

PlaywrightLaunch Chrome with --privet-ipv6-only using Playwright

const browser = await chromium.launch({
  args: ['--privet-ipv6-only']
});

SeleniumLaunch Chrome with --privet-ipv6-only using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--privet-ipv6-only')

driver = webdriver.Chrome(options=options)