Chrome Flags Reference

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

--wallet-service-use-sandbox

What does --wallet-service-use-sandbox do?

Use the sandbox Online Wallet service URL (for developer testing).

Usage

CLILaunch Chrome with --wallet-service-use-sandbox using CLI

chrome --wallet-service-use-sandbox

PuppeteerLaunch Chrome with --wallet-service-use-sandbox using Puppeteer

const browser = await puppeteer.launch({
  args: ['--wallet-service-use-sandbox']
});

PlaywrightLaunch Chrome with --wallet-service-use-sandbox using Playwright

const browser = await chromium.launch({
  args: ['--wallet-service-use-sandbox']
});

SeleniumLaunch Chrome with --wallet-service-use-sandbox using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--wallet-service-use-sandbox')

driver = webdriver.Chrome(options=options)