--autofill-server-url
What does --autofill-server-url do?
Override the default autofill server URL with "scheme://host[:port]/prefix/".
Usage
CLILaunch Chrome with --autofill-server-url using CLI
chrome --autofill-server-urlPuppeteerLaunch Chrome with --autofill-server-url using Puppeteer
const browser = await puppeteer.launch({
args: ['--autofill-server-url']
});PlaywrightLaunch Chrome with --autofill-server-url using Playwright
const browser = await chromium.launch({
args: ['--autofill-server-url']
});SeleniumLaunch Chrome with --autofill-server-url using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--autofill-server-url')
driver = webdriver.Chrome(options=options)