--enable-low-end-device-mode
What does --enable-low-end-device-mode do?
Force low-end device mode when set.
Usage
CLILaunch Chrome with --enable-low-end-device-mode using CLI
chrome --enable-low-end-device-modePuppeteerLaunch Chrome with --enable-low-end-device-mode using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-low-end-device-mode']
});PlaywrightLaunch Chrome with --enable-low-end-device-mode using Playwright
const browser = await chromium.launch({
args: ['--enable-low-end-device-mode']
});SeleniumLaunch Chrome with --enable-low-end-device-mode using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-low-end-device-mode')
driver = webdriver.Chrome(options=options)