一. 单一请求中脚本的执行顺序
单一请求中,我们可以设置pre-request, test两个脚本。
其执行顺序如下图所示:
- pre-request脚本
- 发送请求, 收到响应
- test脚本
二. 请求处于文件夹和集合中的情况
在集合(collection), 文件夹(folder)和单独请求上,我们都可以设置pre-reqeust及test这两类脚。最复杂的情况是,集合的文件夹中有请求。这种情况下脚本们的执行顺序是怎么样的呢?
脚本执行顺序如下图所示:
- 集合pre-request
- 文件集pre-request
- 请求中的pre-request
- 发送请求, 收到响应
- 集合test
- 文件夹test
- 请求中的test
注意:
每个请求都会按上面的流程执行。也就是说如果有n个请求,集合和文件夹中的脚本就会执行n次。
三. 一个例子
假设我们在study集合的demo文件夹下有request1, request2两个请求。
image
首先在study集合上加入pre-request和test。
image
pre-request:
console.log("collection pre-reqeust");
test:
console.log("collection test");
接着在demo文件夹上加入pre-request和test
image
pre-request:
console.log("folder pre-reqeust");
test:
console.log("folder test");
然后在请求上加入与上面类似的pre-request和test
最后执行study集合
image
可以在postman console上看到如下结果:
image
网友评论