937135952 发表于 2022-12-22 16:46:09

如何用x-path下载网页中的验证码

网址:https://www.citicsf.com/e-futures/user/login
想识别验证码并实现登入,思路想的是先把验证码下载到本地,然后再进行识别,之后登入。就是不知道怎么把验证码下载下来,请教各位

suchocolate 发表于 2022-12-23 09:38:44

本帖最后由 suchocolate 于 2022-12-23 09:44 编辑

import requests

url = 'https://www.citicsf.com/e-futures/user/login'
# 验证码会随时间和会话变动,同一个会话(连接)和验证码和cookie等有绑定关系。创建会话,让requests帮我们维护cookie。
s = requests.session()
headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'
                         ' (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 Edg/108.0.1462.54',
         'referer': 'https://www.citicsf.com/'}
# 让会话对象先和网站建立连接,缓存相关cookie
s.get(url, headers=headers)

# 这是验证码固定地址
url = 'https://www.citicsf.com/e-futures/user/kaptcha'
# 下载验证码图片
r = s.get(url, headers=headers)
with open('kaptcha.png', 'wb') as f:
    f.write(r.content)
# 之后如果你有登录的需求,也需要在这个会话下完成。

937135952 发表于 2023-2-16 14:32:17

suchocolate 发表于 2022-12-23 09:38


如果用浏览器的方法要怎么传入headers,缓存相关cookie呢,    s = requests.Session()
   
    fb = webdriver.FirefoxProfile.DEFAULT_PREFERENCES
    # op = webdriver.FirefoxOptions()
    # op.set_preference({'user-data-dir':''})
    c = webdriver.ChromeOptions()
    c.add_argument('--user-data-dir=D:/AutomationProfile')
    c.add_argument('--headless')
    # c.add_argument(f'user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36')
    driver1 = webdriver.Chrome()
   
    driver1.get('https://www.citicsf.com/e-futures/user/login')

suchocolate 发表于 2023-2-16 14:40:20

937135952 发表于 2023-2-16 14:32
如果用浏览器的方法要怎么传入headers,缓存相关cookie呢,

浏览器会自动缓存,不需要人工保存。
浏览器登录后,图片就自动下载了。selenium要考虑的是图形识别了。https://github.com/Python3WebSpider/Python3WebSpider/blob/master/8.1-%E5%9B%BE%E5%BD%A2%E9%AA%8C%E8%AF%81%E7%A0%81%E7%9A%84%E8%AF%86%E5%88%AB.md
页: [1]
查看完整版本: 如何用x-path下载网页中的验证码