我有这样的测试计划:
Thread group
|---User parameter(user'scredentials mention there)
|--Request body (same for the users)
|----csv file1
|-----csv file2
现在如果它是users.name==joe
,如果它是csvfile1
,则应执行user.name==nmeon
,通过用户参数执行csvfile2
我在JMeter控制台中获得了用户名。
如何使用IF控制器/ bean shell编写脚本如果我使用脚本为此编写的内容?
答案 0 :(得分:0)
你基本上有两个选择:
将您的文件名更改为nmeon.csv
和joe.csv
,并使用CSV数据集配置“文件名”部分中的${user.name}
使用2 If Controllers之类的:
${user.name} == "joe"
${user.name} == "nmeon"