当前位置:   article > 正文

selenium-Python使用cookie访问页面_python helium如何用cookie访问

python helium如何用cookie访问

思路:

1.执行一次登录操作,登录成功后获取cookie值

cookie=driver.get_cookies()

2.将cookie保存到txt内,使用with open函数

3.调用cookie访问其他页面

法一:使用Python自带库urllib.request

url='xxx.xx.xx.xxx/xx'

headers = {'cookie':cookie}

req = urllib.request.Request(url, headers = headers)

response = urllib.request.urlopen(req)

法二:使用selenium带的add_cookie方法

此方法暂未成功,总是提示missing cookie

法三:使用Python第三方库requests

r = requests.post(url, headers=headers)

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/149901
推荐阅读
相关标签
  

闽ICP备14008679号