身份验证代理(使用域)后面的人不可能在Python中使用Selenium,在localhost上使用CNTML代理吗?
似乎没有任何效果。虽然我把代理设置放在那个:
myProxy = "localhost:3128"
proxy = Proxy({
'proxyType': ProxyType.MANUAL,
'httpProxy': myProxy,
'ftpProxy': myProxy,
'sslProxy': myProxy,
'noProxy': '' # set this value as desired
})
self.browser = webdriver.Firefox(proxy=proxy)
我还尝试为Firefox创建一个自定义配置文件,在其中配置CNTLM代理,强制python为我的Firefox webdriver配置文件,但没有任何工作。
这甚至可能吗?