driver.find_element_by_xpath(‘‘).screenshot_as_png报错json.decoder.JSONDecodeError,求解

本文介绍了在使用Python进行网页自动化时,遇到`driver.find_element_by_xpath('').screenshot_as_png`方法抛出`json.decoder.JSONDecodeError`错误的情况。问题源于调用超级鹰API识别验证码时,解析响应数据出错。文章寻求解决方案。
摘要由CSDN通过智能技术生成

使用超级鹰作为识别验证码工具

超级鹰的代码

#!/usr/bin/env python
# coding:utf-8

import requests
from hashlib import md5
import json

class Chaojiying_Client(object):

    def __init__(self, username, password, soft_id):
        self.username = username
        password =  password.encode('utf8')
        self.password = md5(password).hexdigest()
        self.soft_id = soft_id
        self.base_params = {
   
            'user': self.username,
            'pass2': self.password,
            'softid': self.soft_id
        }
        self.headers = {
   
            'Connection': 'Keep-Alive',
            'User-Agent': 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)'
        }

    def PostPic(self, im, codetype):
        """
        im: 图片字节
        codetype: 题目类型 参考 http://www.chaojiying.com/price.html
        """
        params = {
   
            'codetype': codetype
        }
        params.update(self.base_params)
        files = 
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值