--cc-layer-tree-test-no-timeout
What does --cc-layer-tree-test-no-timeout do?
Prevents the layer tree unit tests from timing out.
Usage
CLILaunch Chrome with --cc-layer-tree-test-no-timeout using CLI
chrome --cc-layer-tree-test-no-timeoutPuppeteerLaunch Chrome with --cc-layer-tree-test-no-timeout using Puppeteer
const browser = await puppeteer.launch({
args: ['--cc-layer-tree-test-no-timeout']
});PlaywrightLaunch Chrome with --cc-layer-tree-test-no-timeout using Playwright
const browser = await chromium.launch({
args: ['--cc-layer-tree-test-no-timeout']
});SeleniumLaunch Chrome with --cc-layer-tree-test-no-timeout using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--cc-layer-tree-test-no-timeout')
driver = webdriver.Chrome(options=options)