我需要使用代理,但出现此错误
from selenium import webdriver
driver = webdriver.Chrome(executable_path=" my path to chromedriver.exe")
driver.get("http://whatismyipaddress.com")
from selenium import webdriver
hostname = "18.237.192.131" #found this on the proxy page. I put
different ip addresses here...
port = "3128"
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % hostname + ":" + port)
driver = webdriver.Chrome(executable_path="my path to chromedriver.exe",
options=chrome_options)
driver.get("http://whatismyipaddress.com")
我收到此错误 没有互联网 代理服务器有问题,或地址不正确。 尝试: •联系系统管理员 •检查代理地址 •运行Windows网络诊断 ERR_PROXY_CONNECTION_FAILED
如果我也转到Chrome菜单>设置>显示高级设置...>更改代理设置...> 局域网设置,然后取消选择“为局域网使用代理服务器”。
它已经被取消选择。
有什么想法吗?