Chrome Flags Reference

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

--adaboost

What does --adaboost do?

No description available for this flag.

Usage

CLILaunch Chrome with --adaboost using CLI

chrome --adaboost

PuppeteerLaunch Chrome with --adaboost using Puppeteer

const browser = await puppeteer.launch({
  args: ['--adaboost']
});

PlaywrightLaunch Chrome with --adaboost using Playwright

const browser = await chromium.launch({
  args: ['--adaboost']
});

SeleniumLaunch Chrome with --adaboost using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--adaboost')

driver = webdriver.Chrome(options=options)