Chrome Flags Reference

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

--web-otp-backend-sms-verification

What does --web-otp-backend-sms-verification do?

Enables Sms Verification backend for Web OTP API which requires app hash in SMS body.

Usage

CLILaunch Chrome with --web-otp-backend-sms-verification using CLI

chrome --web-otp-backend-sms-verification

PuppeteerLaunch Chrome with --web-otp-backend-sms-verification using Puppeteer

const browser = await puppeteer.launch({
  args: ['--web-otp-backend-sms-verification']
});

PlaywrightLaunch Chrome with --web-otp-backend-sms-verification using Playwright

const browser = await chromium.launch({
  args: ['--web-otp-backend-sms-verification']
});

SeleniumLaunch Chrome with --web-otp-backend-sms-verification using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--web-otp-backend-sms-verification')

driver = webdriver.Chrome(options=options)

Build Conditions

LOAD_WEBUI_FROM_DISK