Chrome Flags Reference

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

--disable-remote-playback-api

What does --disable-remote-playback-api do?

Disables the RemotePlayback API.

Usage

CLILaunch Chrome with --disable-remote-playback-api using CLI

chrome --disable-remote-playback-api

PuppeteerLaunch Chrome with --disable-remote-playback-api using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-remote-playback-api']
});

PlaywrightLaunch Chrome with --disable-remote-playback-api using Playwright

const browser = await chromium.launch({
  args: ['--disable-remote-playback-api']
});

SeleniumLaunch Chrome with --disable-remote-playback-api using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-remote-playback-api')

driver = webdriver.Chrome(options=options)