--raise-timer-frequency
What does --raise-timer-frequency do?
Raise the timer interrupt frequency in all Chrome processes, for experimental purposes. This feature is needed because as of Windows 10 2004 the scheduling effects of changing the timer interrupt frequency are not global, and this lets us prove/disprove whether this matters. See https://crbug.com/1128917
Usage
CLILaunch Chrome with --raise-timer-frequency using CLI
chrome --raise-timer-frequencyPuppeteerLaunch Chrome with --raise-timer-frequency using Puppeteer
const browser = await puppeteer.launch({
args: ['--raise-timer-frequency']
});PlaywrightLaunch Chrome with --raise-timer-frequency using Playwright
const browser = await chromium.launch({
args: ['--raise-timer-frequency']
});SeleniumLaunch Chrome with --raise-timer-frequency using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--raise-timer-frequency')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISKANDROIDWIN