使用用户定义变量实现多用户登录的问题
录制了登录的脚本然后在login页面中想重复使用一个文本文件中的多个用户名反复登录
看了jmeter的用户手册上面写的
Some test plans need to use different values for different users/threads. For example, you might want to test a sequence that requires a unique login for each user.This is easy to achieve with the facilities provided by JMeter.
For example:
[*] Create a text file containing the user names and passwords, separated by commas.Put this in the same directory as your test plan.[*] Add a CSV DataSet configuration element to the test plan.Name the variables USER and PASS.[*] Replace the login name with ${USER} and the password with ${PASS} on the appropriatesamplers The CSV Data Set element will read a new line for each thread.
我在脚本的目录下建立了一个a.txt的文件,里面三行数据
test1,test11
test2,test22
test3,test33
然后在脚本里面添加了CSV DATA SET
VariableNames设置为USER,PASS
然后在login页面里面
对变量USERNAME 设置为"${USER}"
对变量PASSWORD设置为"${PASS}"
按照说明书上是不是应该这么设置呢。。。。
结果 脚本貌似没有运行成功啊
另外jmeter中有没有类似qaload那种 可以有代码调试界面的脚本调试工具呢
还有脚本录制完成之后大概都怎么调试呢
badboy貌似不错 不过badboy中录制的许多元素在jmeter中都不知道啊 比如什么数据池之类的
头疼ing 有哪位高手能帮个忙 加一下我的QQ 128899383x 1. 把你的数据写成一个csv文件
2. 指定一个变量到这个csv文件 ${_CSVRead()}
3. 使用变量就ok了 :)
页:
[1]