BillBie

导航

上一页 1 ··· 7 8 9 10 11

2018年7月17日 #

python一元二次方程解

摘要: python一元二次方程解 import math def quadratic(a,b, c): jie=() if a == 0: print("a为分母,不能为0") elif (b ** 2 - 4 * a * c) < 0: jie=("无解") return (jie) print("x无 阅读全文

posted @ 2018-07-17 13:53 BillBie 阅读(2) 评论(0) 推荐(0) 编辑

2018年5月28日 #

python3-unittest生成测试报告(HTMLTestRunner)

摘要: (补充部分) 如果进行了下面的修改,出现了如图的报错: 则修改HTMLTestRunner.py 的print (sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime)) 为 sys.stderr.write('\nTime 阅读全文

posted @ 2018-05-28 13:54 BillBie 阅读(4) 评论(0) 推荐(0) 编辑

2018年3月9日 #

jmeter使用beanshell处理MD5

摘要: 以我们自己项目为例,当请求有采用MD5加密后,使用beanshell通过加密(已知加密规则) 手写,写出MD5加密方式。 一般项目的加密字段一般为,时间戳+随机数+固定key值+请求参数 下面咋们根据此规则进行MD5加密 步骤1.jmete 如何获得时间戳呢? 调用jmeter本身函数 ${_tim 阅读全文

posted @ 2018-03-09 10:41 BillBie 阅读(38) 评论(0) 推荐(0) 编辑

2017年12月8日 #

beanshell解析json(从简单到复杂)

摘要: 使用beanshell 解析单层Json: Json 数据如下: { "status":200, "code": 0, "message": "成功", "data": { "last": false, "totalPages": 7, "numberOfElements": 3, "first": 阅读全文

posted @ 2017-12-08 16:49 BillBie 阅读(162) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11