一.测试计划添加jar包
- 在目录lib/ext下选择jar包testng、fastjson
二、通过接口【查询所有学生】信息
三、对添加【查询所有学生】BeanShell后置处理器
- 脚本如下:
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.testng.Assert;
//获取接口返回的response数据
String json = prev.getResponseDataAsString();
JSONObject jsonObject = JSONObject.parseObject(json);
String myData = jsonObject.getString(“data”);
List list=JSONArray.parseArray(myData);
String id=null;
for (Object obj:list) {
jsonObject=jsonObject.parseObject(obj.toString());
String name=jsonObject.getString(“name”);
String student_id=jsonObject.getString(“id”);
if (name.equals(“test”)){
Assert.assertEquals(name,”test”);
id=student_id;
break;
}
}
vars.put(“id”,id);
log.info(“————————————-“);
System.out.println(id);
四、添加http接口 【按照id删除学生】
- 引用参数
- 执行结果
原创文章,作者:Carrie001128,如若转载,请注明出处:https://blog.ytso.com/244601.html