hey,
can anyone help me to code the following? I want to open the chrome driver though a proxy (user:pass@ip:port).
After trying a few things i failed, so i decided to ask for help here, and would be really thankfull if anyone would help out.
from selenium import webdriver
PROXY = ""
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
chrome = webdriver.Chrome(chrome_options=chrome_options)
chrome.get("https://www.google.com")```
Something like that should work? Or how to solver that