--slow-down-raster-scale-factor
What does --slow-down-raster-scale-factor do?
Re-rasters everything multiple times to simulate a much slower machine. Give a scale factor to cause raster to take that many times longer to complete, such as --slow-down-raster-scale-factor=25.
Usage
CLILaunch Chrome with --slow-down-raster-scale-factor using CLI
chrome --slow-down-raster-scale-factorPuppeteerLaunch Chrome with --slow-down-raster-scale-factor using Puppeteer
const browser = await puppeteer.launch({
args: ['--slow-down-raster-scale-factor']
});PlaywrightLaunch Chrome with --slow-down-raster-scale-factor using Playwright
const browser = await chromium.launch({
args: ['--slow-down-raster-scale-factor']
});SeleniumLaunch Chrome with --slow-down-raster-scale-factor using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--slow-down-raster-scale-factor')
driver = webdriver.Chrome(options=options)