Chrome Flags Reference

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

--auth-spnego-account-type

What does --auth-spnego-account-type do?

Android authentication account type for SPNEGO authentication

Usage

CLILaunch Chrome with --auth-spnego-account-type using CLI

chrome --auth-spnego-account-type

PuppeteerLaunch Chrome with --auth-spnego-account-type using Puppeteer

const browser = await puppeteer.launch({
  args: ['--auth-spnego-account-type']
});

PlaywrightLaunch Chrome with --auth-spnego-account-type using Playwright

const browser = await chromium.launch({
  args: ['--auth-spnego-account-type']
});

SeleniumLaunch Chrome with --auth-spnego-account-type using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--auth-spnego-account-type')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID