--proxy-bypass-list
What does --proxy-bypass-list do?
Specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect or --no-proxy-server are also specified. This is a comma-separated list of bypass rules. See: "net/proxy_resolution/proxy_host_matching_rules.h" for the format of these rules.
Usage
CLILaunch Chrome with --proxy-bypass-list using CLI
chrome --proxy-bypass-listPuppeteerLaunch Chrome with --proxy-bypass-list using Puppeteer
const browser = await puppeteer.launch({
args: ['--proxy-bypass-list']
});PlaywrightLaunch Chrome with --proxy-bypass-list using Playwright
const browser = await chromium.launch({
args: ['--proxy-bypass-list']
});SeleniumLaunch Chrome with --proxy-bypass-list using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--proxy-bypass-list')
driver = webdriver.Chrome(options=options)