--force-webrtc-ip-handling-policy
What does --force-webrtc-ip-handling-policy do?
Override WebRTC IP handling policy to mimic the behavior when WebRTC IP handling policy is specified in Preferences.
Usage
CLILaunch Chrome with --force-webrtc-ip-handling-policy using CLI
chrome --force-webrtc-ip-handling-policyPuppeteerLaunch Chrome with --force-webrtc-ip-handling-policy using Puppeteer
const browser = await puppeteer.launch({
args: ['--force-webrtc-ip-handling-policy']
});PlaywrightLaunch Chrome with --force-webrtc-ip-handling-policy using Playwright
const browser = await chromium.launch({
args: ['--force-webrtc-ip-handling-policy']
});SeleniumLaunch Chrome with --force-webrtc-ip-handling-policy using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--force-webrtc-ip-handling-policy')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISK