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