In Selenium, using the WebDriver, I can set experimental options as follows:
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(options=options)
In Chrome version 132, there is an experimental option to enable Smooth Scrolling. How can I enable this option in Selenium?
Smooth scrolling is not enabled by default in Chrome.