Chrome Flags Reference

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

--enable-smooth-scrolling

What does --enable-smooth-scrolling do?

On platforms that support it, enables smooth scroll animation.

Usage

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

chrome --enable-smooth-scrolling

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

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

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

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

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

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)