Fork me on GitHub
摘要: 在接口测试学习过程中,遇到了利用requests库进行文件下载和上传的问题。同样,在真正的测试过程中,我们不可避免的会遇到上传和下载的测试。 一、文件上传 import requests #1、上传文件 url = 'http://httpbin.org/post' # 上传文件接口 files = 阅读全文
posted @ 2023-01-04 21:17 橘子偏爱橙子 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 一、openpyxl简单介绍 一个Python库,用于读取/写入Excel 2010 xlsx 、xlsm 、xltx 、xltm 文件 不能操作 xls 文件 Workbook:excel工作表 Sheet:工作表中的一张表 Cell:其中的一个单元格 简单步骤:打开Workbook,选中Shee 阅读全文
posted @ 2023-01-04 21:17 橘子偏爱橙子 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 一、安装 利用 pip 安装:$ pip install requests requests 方法 法描述 delete(url, args) 发送 DELETE 请求到指定 url get(url, params, args) 发送 GET 请求到指定 url head(url, args) 发送 阅读全文
posted @ 2023-01-04 21:16 橘子偏爱橙子 阅读(49) 评论(0) 推荐(0) 编辑