Chrome Flags Reference

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

--disable-smooth-scrolling

What does --disable-smooth-scrolling do?

Disable smooth scrolling for testing.

Usage

CLILaunch Chrome with --disable-smooth-scrolling using CLI

chrome --disable-smooth-scrolling

PuppeteerLaunch Chrome with --disable-smooth-scrolling using Puppeteer

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

PlaywrightLaunch Chrome with --disable-smooth-scrolling using Playwright

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

SeleniumLaunch Chrome with --disable-smooth-scrolling using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-smooth-scrolling')

driver = webdriver.Chrome(options=options)