How to connect through private proxy (user:pass@ip:port) using selenium web driver? When I try to connect it shows me
ERR_NO_SUPPORTED_PROXIES
I googled a lot, but everywhere the information is only about common proxies (ip:port). If anyone knows or has come across this - tell me, please. Thanks.
from selenium import webdriver
url = 'https://google.com'
proxy = '' # user:pass@ip:port
options = webdriver.ChromeOptions()
options.add_argument(f'--proxy-server=http://{proxy}')
browser = webdriver.Chrome(options=options)
browser.get(url)