上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页
摘要: https://www.jianshu.com/p/3156dee894b8 https://www.cnblogs.com/lzw123-/p/9908748.html 阅读全文
posted @ 2020-09-01 18:19 mkay 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1、下载filezilla https://www.yiweihy.com/knowledge/used/215-ftp-filezilla.html 2、连接到linux 通过过拽可以把windows文件拉到linux服务器中 阅读全文
posted @ 2020-09-01 17:13 mkay 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 1、把jmeter完整拷贝到助攻机器上 2、助攻机器配置 在bin目录下启动 jmeter-server.bat -Djava.rmi.server.hostname=192.xxx.xxx.xxx ;linux下如果不能启动,可能是文件权限的问题,用chmod修改权限即可。另外检查一下防火墙是否关 阅读全文
posted @ 2020-08-30 12:24 mkay 阅读(137) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_36836332/article/details/82153974 https://www.cnblogs.com/01-single/p/6865885.html https://www.cnblogs.com/liuswi/p/10152108. 阅读全文
posted @ 2020-08-29 17:32 mkay 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 安装插件 需要把插件放到lib目录下 打开jemter中的插件管理 搜索jpbc并下载插件 下载完成后重启jmeter可以看到多了一些控件 负载测试 负载测试:通过逐步增加并发用户数的方式来向服务器发起请求,寻找并发用户数性能的拐点区间 1、jp@gc - Stepping Thread Group 阅读全文
posted @ 2020-08-29 15:05 mkay 阅读(392) 评论(0) 推荐(0) 编辑
摘要: $2$$3$代表取第二个和第三个括号的值 阅读全文
posted @ 2020-08-27 17:08 mkay 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 参考 :https://www.jianshu.com/p/654eeab88119 阅读全文
posted @ 2020-08-27 15:44 mkay 阅读(140) 评论(0) 推荐(0) 编辑
摘要: jmeter函数官方文档地址:https://jmeter.apache.org/usermanual/functions.html 1、__digest:用于加密 可选加密算法: 2、__time:时间函数 如果不填写则生成时间戳格式的一串数字 3、__Random:取随机数 4、__Random 阅读全文
posted @ 2020-08-24 11:51 mkay 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 1、向上取整 import math >>> math.ceil(4.12) 5 2、向下取整 import math >>> math.floor(4.12) 4 3、四舍五入 >>> round(2.3) 2 >>> round(2.6) 3 math模块其他用法:https://www.cnb 阅读全文
posted @ 2020-08-20 11:16 mkay 阅读(973) 评论(0) 推荐(0) 编辑
摘要: unittest unittest是python中的官方库,兼容性更好,更稳定。而pytest需要pip install 安装,在安装的时候,可能会出现和python版本的兼容问题。 定义测试用例类:用例类必须继承于unittest.TestCase定义测试用例:在测试用例类中,每一个以test开头 阅读全文
posted @ 2020-08-18 17:04 mkay 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页