摘要:
前言: locust完全基于python语言,采用pure python描述测试脚本,并且http请求完全基于requests库。除了http/https协议外,locust还可以测试其他协议的系统,只需采用python调用对应的库进行请求描述即可,an open source load testi 阅读全文
摘要:
import randomdef dlt(): """前面和后面的数字可以重复,但是产生的多条数字不能有重复""" all_front = [str(digit).zfill(2) for digit in range(1, 33)] # 列表生成式产生32个数字,1-9前面补0 all_back 阅读全文