Chrome Flags Reference

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

--disable-highres-timer

What does --disable-highres-timer do?

Disable high-resolution timer on Windows.

Usage

CLILaunch Chrome with --disable-highres-timer using CLI

chrome --disable-highres-timer

PuppeteerLaunch Chrome with --disable-highres-timer using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-highres-timer']
});

PlaywrightLaunch Chrome with --disable-highres-timer using Playwright

const browser = await chromium.launch({
  args: ['--disable-highres-timer']
});

SeleniumLaunch Chrome with --disable-highres-timer using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-highres-timer')

driver = webdriver.Chrome(options=options)

Build Conditions

WIN