Chrome Flags Reference

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

--ssl-version-max

What does --ssl-version-max do?

Specifies the maximum SSL/TLS version ("tls1.2" or "tls1.3").

Usage

CLILaunch Chrome with --ssl-version-max using CLI

chrome --ssl-version-max

PuppeteerLaunch Chrome with --ssl-version-max using Puppeteer

const browser = await puppeteer.launch({
  args: ['--ssl-version-max']
});

PlaywrightLaunch Chrome with --ssl-version-max using Playwright

const browser = await chromium.launch({
  args: ['--ssl-version-max']
});

SeleniumLaunch Chrome with --ssl-version-max using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ssl-version-max')

driver = webdriver.Chrome(options=options)