--auth-server-allowlist
What does --auth-server-allowlist do?
Allowlist for Negotiate Auth servers
Usage
CLILaunch Chrome with --auth-server-allowlist using CLI
chrome --auth-server-allowlistPuppeteerLaunch Chrome with --auth-server-allowlist using Puppeteer
const browser = await puppeteer.launch({
args: ['--auth-server-allowlist']
});PlaywrightLaunch Chrome with --auth-server-allowlist using Playwright
const browser = await chromium.launch({
args: ['--auth-server-allowlist']
});SeleniumLaunch Chrome with --auth-server-allowlist using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--auth-server-allowlist')
driver = webdriver.Chrome(options=options)