--web-otp-backend-auto
What does --web-otp-backend-auto do?
Enables auto backend selection for Web OTP API.
Usage
CLILaunch Chrome with --web-otp-backend-auto using CLI
chrome --web-otp-backend-autoPuppeteerLaunch Chrome with --web-otp-backend-auto using Puppeteer
const browser = await puppeteer.launch({
args: ['--web-otp-backend-auto']
});PlaywrightLaunch Chrome with --web-otp-backend-auto using Playwright
const browser = await chromium.launch({
args: ['--web-otp-backend-auto']
});SeleniumLaunch Chrome with --web-otp-backend-auto using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--web-otp-backend-auto')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK