Jmeter验证码图片登录
作者:互联网
Jmeter使用test4j进行图片验证码识别、登录
1. 下载test4j
https://sourceforge.net/projects/tess4j/2. 修改Jmeter外部依赖文件夹
(1)修改D:\Applications\apache-jmeter-5.4.1-3\bin目录下jmeter.properties文件
plugin_dependency_paths=../dependencies/lib;
(2)test4j压缩包解压,进行以下操作:
①将XXXX\Tess4J\lib目录下所有所有文件复制到D:\Applications\apache-jmeter-5.4.1-3\dependencies\lib目录下;
②将XXXX\Tess4J\dist目录下所有文件复制到D:\Applications\apache-jmeter-5.4.1-3\dependencies\lib目录下。
3. 编写Jmeter及脚本
(1)创建线程组
(2)添加变量
(3)添加cookie
(4)添加获取验证码请求并识别验证码
①添加获取验证码请求
②添加查看结果树并运行查看请求结果
③添加BeanShell PostProcessor,并编写脚本识别验证码图片内容
import java.io.*; import net.sourceforge.tess4j.ITesseract; import net.sourceforge.tess4j.Tesseract; import java.text.SimpleDateFormat; import java.util.Date; // 设置日期格式,如2022-05-17-12-08-11-548 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss-SSS"); // 将验证码保存到本地文件中 String imgPath="D:/captcha/" + df.format(new Date()) + "-captcha.jpg"; byte[] responseBody = prev.getResponseData(); File imageFile = new File(imgPath); OutputStream out = new FileOutputStream(imageFile); out.write(responseBody); out.flush(); out.close(); // 读取图片数字 File imageFile1 = new File(imgPath); ITesseract instance = new Tesseract(); // Tess4j 解压文件里的 tessdata 目录下 instance.setDatapath("D:/__Download/Google Download/Tess4J/tessdata"); // 英文库识别数字比较准确 instance.setLanguage("eng"); captcha = instance.doOCR(imageFile1).replace("\n", ""); log.info("this captcha is : " + captcha); vars.put("captcha",captcha);
④验证识别的结果是否正确
⑤添加登录请求
认真核对每一项值
⑥添加线程组的查看结果树
⑦选择中线程组查看结果树,运行并查看结果
(5)至此Jmeter验证码登录完成,以下是我下载并配置好的环境,有需要可阿里云盘自取
使用解压文件解压即可
https://www.aliyundrive.com/s/MjbifMZqMps
「Jmeter识别验证码登录程序包.exe」https://www.aliyundrive.com/s/MjbifMZqMps 点击链接保存,或者复制本段内容,打开「阿里云盘」APP ,无需下载极速在线查看,视频原画倍速播放。
标签:登录,验证码,captcha,添加,import,new,Jmeter 来源: https://www.cnblogs.com/chengho/p/16266172.html