Chrome Flags Reference

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

--disable-vsync-for-tests

What does --disable-vsync-for-tests do?

No description available for this flag.

Usage

CLILaunch Chrome with --disable-vsync-for-tests using CLI

chrome --disable-vsync-for-tests

PuppeteerLaunch Chrome with --disable-vsync-for-tests using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-vsync-for-tests']
});

PlaywrightLaunch Chrome with --disable-vsync-for-tests using Playwright

const browser = await chromium.launch({
  args: ['--disable-vsync-for-tests']
});

SeleniumLaunch Chrome with --disable-vsync-for-tests using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-vsync-for-tests')

driver = webdriver.Chrome(options=options)