Chrome Flags Reference

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

--ui-show-fps-counter

What does --ui-show-fps-counter do?

No description available for this flag.

Usage

CLILaunch Chrome with --ui-show-fps-counter using CLI

chrome --ui-show-fps-counter

PuppeteerLaunch Chrome with --ui-show-fps-counter using Puppeteer

const browser = await puppeteer.launch({
  args: ['--ui-show-fps-counter']
});

PlaywrightLaunch Chrome with --ui-show-fps-counter using Playwright

const browser = await chromium.launch({
  args: ['--ui-show-fps-counter']
});

SeleniumLaunch Chrome with --ui-show-fps-counter using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ui-show-fps-counter')

driver = webdriver.Chrome(options=options)