How do I use a proxy IP with selenium chrome?
I've replicated the steps in this question and this question but cannot get chrome to use a new proxy.
To replicate, choose any of the free IPs from this site then execute:
PROXY = "80.237.6.1:34880"
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
chrome = webdriver.Chrome(chrome_options=chrome_options)
chrome.get("https://www.whatismyip.com/my-ip-information/")
When chrome opens the wahtismyip.com page, the displayed IP is my own, not the proxy.