Chrome Flags Reference

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

--notification-inline-reply

What does --notification-inline-reply do?

Used in combination with kNotificationLaunchId to specify the inline reply entered in the toast in the Windows Action Center.

Usage

CLILaunch Chrome with --notification-inline-reply using CLI

chrome --notification-inline-reply

PuppeteerLaunch Chrome with --notification-inline-reply using Puppeteer

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

PlaywrightLaunch Chrome with --notification-inline-reply using Playwright

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

SeleniumLaunch Chrome with --notification-inline-reply using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--notification-inline-reply')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWIN