--glic-guest-url-preset-autopush
What does --glic-guest-url-preset-autopush do?
Configure preset guest URLs for manual testing. These are saved to profile prefs and can be selected to override the default glic guest URL through corresponding entries in chrome://flags.
Usage
CLILaunch Chrome with --glic-guest-url-preset-autopush using CLI
chrome --glic-guest-url-preset-autopushPuppeteerLaunch Chrome with --glic-guest-url-preset-autopush using Puppeteer
const browser = await puppeteer.launch({
args: ['--glic-guest-url-preset-autopush']
});PlaywrightLaunch Chrome with --glic-guest-url-preset-autopush using Playwright
const browser = await chromium.launch({
args: ['--glic-guest-url-preset-autopush']
});SeleniumLaunch Chrome with --glic-guest-url-preset-autopush using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--glic-guest-url-preset-autopush')
driver = webdriver.Chrome(options=options)Build Conditions
ANDROID!(CHROMEOS)MACWINENABLE_GLIC