--disable-threaded-animation
What does --disable-threaded-animation do?
No description available for this flag.
Usage
CLILaunch Chrome with --disable-threaded-animation using CLI
chrome --disable-threaded-animationPuppeteerLaunch Chrome with --disable-threaded-animation using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-threaded-animation']
});PlaywrightLaunch Chrome with --disable-threaded-animation using Playwright
const browser = await chromium.launch({
args: ['--disable-threaded-animation']
});SeleniumLaunch Chrome with --disable-threaded-animation using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-threaded-animation')
driver = webdriver.Chrome(options=options)