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