摘要:
import random import string # 随机整数: print random.randint(1,50) #左右都是闭区间 # 随机选取0到100间的偶数: print random.randrange(0, 101, 2) #左闭右开区间 # 随机浮点数: print rand 阅读全文
摘要:
1.requests库发送请求时,params和data、json的区别 params的时候之间接把参数加到url后面,只在get请求时使用,data、json是用在post请求,json是传递的json格式的数据 params: (optional) Dictionary or bytes to 阅读全文
摘要:
1.异步接口如何测试 2.接口自动化测试设计模式 3.如何获取脚本请求所消耗的时间 4.requests设置代理 5.requests加入客户端证书的参数 6.requests中data和params有什么区别 7. 阅读全文