摘要:
time:有2个参数 格式:非必填项,格式如果不填那么就是默认获取当前时间的毫秒数(此项也常被用于接口参数中那些不允许重复的字段); 参数名称:非必填项,如果填了,则生成的时间会被放到该参数中,可以在任意地方调用这个参数,常用于多接口中某个值使用同一个时间参数的情况; ${__time(,)}:获取 阅读全文
2023年2月1日
2022年6月1日
摘要:
千万级以上测试数据参数化-性能测试具体实现方式(jmeter、redis)_~见贤思齐~的博客-CSDN博客_redis性能测试报告 阅读全文
2022年5月24日
2022年4月20日
2022年3月1日
2021年7月14日
摘要:
a = 5.036,b = 4.000 方法一: round(a,2) -> 5.04 round(b,2) -> 4.0 方法二:最好 float('%.2f' % a) -> 5.04 float('%.2f' % b) -> 4.0 方法三: from decimal import Decim 阅读全文
摘要:
参考文档地址: https://cuiqingcai.com/1319.html https://blog.csdn.net/qq_44667896/article/details/104793547 阅读全文
2021年7月7日
摘要:
1、x-www-form-urlencoded格式的数据获取 import org.apache.jmeter.config.Arguments; import org.apache.jmeter.config.Argument; import org.json.JSONObject; import 阅读全文
2021年7月2日
摘要:
方法一: with open('/path/to/file', 'r') as f: with open('/path/to/file.new', 'w') as g: for line in f.readlines(): if '/local/server' not in line: g.writ 阅读全文