--enable-net-benchmarking
What does --enable-net-benchmarking do?
Enables the network-related benchmarking extensions.
Usage
CLILaunch Chrome with --enable-net-benchmarking using CLI
chrome --enable-net-benchmarkingPuppeteerLaunch Chrome with --enable-net-benchmarking using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-net-benchmarking']
});PlaywrightLaunch Chrome with --enable-net-benchmarking using Playwright
const browser = await chromium.launch({
args: ['--enable-net-benchmarking']
});SeleniumLaunch Chrome with --enable-net-benchmarking using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-net-benchmarking')
driver = webdriver.Chrome(options=options)