--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-maxPuppeteerLaunch 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)