解决方案#1:firefox
fp = webdriver.firefoxProfile()fp.set_preference("network.proxy.type",1)fp.set_preference("network.proxy.http","IP")fp.set_preference("network.proxy.http_port",PORT)driver = webdriver.firefox(firefox_profile=fp)driver.get("http://www.Google.com")
问题:浏览器打开后,会打开用户名和密码的authd出窗口.
alert = driver.switch_to_alert()alert.send_keys('balbla')
不起作用,根本没有回应.
更改代理也没有运气
http://username:password@ip
解决方案#2:PhantomJs
使用phantomJs我设法在代码中进行身份验证:
service_args = [ '--proxy=https://IP:PORT','--proxy-type=http','--proxy-auth=USERname:PASSWORD',]br = webdriver.PhantomJs(PATH,service_args=service_args)br.get('https://www.Google.com/')
问题:我不能浏览任何https网站,例如我正在尝试进入https://www.gmail.com,我得到空页.
代理正在使用https肯定(手动加倍检查).
加入
'--ssl-protocol=any'
不行.
我在linux环境下使用selenium和python.寻找任何可以帮助我解决问题的解决方案.
谢谢你的头.
解决方法 我想这有点晚了:) – 但基本上从代理中删除https并将代理类型设置为https:service_args = [ '--proxy=IP:PORT','--proxy-type=https',]总结
以上是内存溢出为你收集整理的python – Selenium – Https问题与PhantomJS和Proxy Auth与Firefox全部内容,希望文章能够帮你解决python – Selenium – Https问题与PhantomJS和Proxy Auth与Firefox所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)