Postman之CVS或JSON文件实现数据驱动

Posted 徐丽丽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Postman之CVS或JSON文件实现数据驱动相关的知识,希望对你有一定的参考价值。

1.返回结果会出现以下返回值:既有正列也有反列

 

 2.创建数据

第一种使用CVS文件

 

 

第二种使用JSON文件

 

 3.在postman中使用

①文件中数据在postman中的使用

 

②编写断言脚本

if(responseBody.search("dynamicToken")!=-1)

    var  result = responseBody.match(new RegExp(\'"dynamicToken":"(.*?)"\'));
    console.log(result[1]);
    pm.globals.set("dynamicToken", result[1]);

//业务断言
pm.test("Body matches string", function () 
    pm.expect(pm.response.text()).to.include(data.assert_token);
);

 

③选择编辑好的文件

④执行3调用列的结果展示

 

以上是关于Postman之CVS或JSON文件实现数据驱动的主要内容,如果未能解决你的问题,请参考以下文章

PostMan做接口测试方法集锦

接口测试实战postman之Collections和数据驱动测试实战

Postman 之HTTP Post jSon 数据的方法

使用Postman或requests结合chromedriver模拟Selenium操作浏览器

postman-----使用CSV和Json文件实现批量接口测试

Postman 使用外部 Json 格式文件批量调用接口