0


Postman+Newman+Jenkins 持续集成自动化测试

Postman脚本函数

基于Node.js运行,编写Postman的脚本都是JavaScript代码,可编写的地方有:collection,folder,request里的pre-request Script 和Test。

1、单个请求的执行顺序

pre-request Script --> 请求--> 响应--> Test断言

2、针对整个collection里面的请求

先执行 collection 里面的 pre-request Script

再执行 folder 里面的 pre-request Script

最后执行 request 里面的 pre-request Script

请求完成之后,先执行 collection 里面的 test

再执行 folder 里面的 test

最终执行 request 里面的 test

4、Postman读取变量优先级

local-->Data-->environment-->collection-->Global

5、Test断言语法

响应体为 json

const responseJson = pm.response.json();

响应体为 xml

const responseJson = xml2Json(pm.response.text());

响应体为 html

const $ = cheerio.load(pm.response.text());

//output the html for testing<

标签: postman jenkins ci/cd

本文转载自: https://blog.csdn.net/ruanxinyan12345/article/details/142022890
版权归原作者 胖球的铲屎官 所有, 如有侵权,请联系我们删除。

“Postman+Newman+Jenkins 持续集成自动化测试”的评论:

还没有评论