Chrome Flags Reference

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

--show-autofill-type-predictions

What does --show-autofill-type-predictions do?

Annotates forms with Autofill field type predictions.

Usage

CLILaunch Chrome with --show-autofill-type-predictions using CLI

chrome --show-autofill-type-predictions

PuppeteerLaunch Chrome with --show-autofill-type-predictions using Puppeteer

const browser = await puppeteer.launch({
  args: ['--show-autofill-type-predictions']
});

PlaywrightLaunch Chrome with --show-autofill-type-predictions using Playwright

const browser = await chromium.launch({
  args: ['--show-autofill-type-predictions']
});

SeleniumLaunch Chrome with --show-autofill-type-predictions using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--show-autofill-type-predictions')

driver = webdriver.Chrome(options=options)