Chrome Flags Reference

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

--disable-pushstate-throttle

What does --disable-pushstate-throttle do?

Disables throttling of history.pushState/replaceState calls.

Usage

CLILaunch Chrome with --disable-pushstate-throttle using CLI

chrome --disable-pushstate-throttle

PuppeteerLaunch Chrome with --disable-pushstate-throttle using Puppeteer

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

PlaywrightLaunch Chrome with --disable-pushstate-throttle using Playwright

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

SeleniumLaunch Chrome with --disable-pushstate-throttle using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-pushstate-throttle')

driver = webdriver.Chrome(options=options)