11 2022 档案
摘要:在搜索了很多方法尝试后,执行依然没有生成测试报告,在尝试在pycharm里面修改配置解决了: file>setting>tools>Python integrated tools>testing>default test runner>unittests
阅读全文
摘要:页面中显示 接口没通,没返回数据,找到了前端的同事,原因是:浏览器设置的问题,选择了【offine】,调整为【No throttling】就可以正常请求了
阅读全文
摘要:代码: res = res.content #接口返回的内容 with open(path,mode='wb') as file: #excel的路径 file.write(res)
阅读全文
摘要:报错: InsecureRequestWarning: Unverified HTTPS request is being made to host 'fatgt.cloud-link.com'. Adding certificate verification is strongly advised
阅读全文
摘要:Py文件 import time import requests # 拼接headers数据 headers = { 'Content-Type':'application/x-msdownload;charset=UTF-8', } headers['cl-auth'] = env_dict['A
阅读全文