--realtime-reporting-url
What does --realtime-reporting-url do?
Specifies the URL at which to upload real-time reports.
Usage
CLILaunch Chrome with --realtime-reporting-url using CLI
chrome --realtime-reporting-urlPuppeteerLaunch Chrome with --realtime-reporting-url using Puppeteer
const browser = await puppeteer.launch({
args: ['--realtime-reporting-url']
});PlaywrightLaunch Chrome with --realtime-reporting-url using Playwright
const browser = await chromium.launch({
args: ['--realtime-reporting-url']
});SeleniumLaunch Chrome with --realtime-reporting-url using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--realtime-reporting-url')
driver = webdriver.Chrome(options=options)