纽曼对setNextRequest的支持

时间:2018-11-21 06:52:04

标签: postman postman-collection-runner

作为PostMan集合的一部分,有一个使用以下代码段执行setNextRequest的请求。该代码段可以通过PostMan收集运行程序很好地执行,但是当通过newman cli执行时却失败,它会出错,“在“获取位置”内的测试脚本中,断言:1处的预期错误为真”。纽曼是否支持setNextRequest api,以及实现该目标的任何其他建议。

from flask import Flask
import subprocess

app = Flask(__name__)

@app.route("/")
def home():
    subprocess.call("python /home/tech/Downloads/labelme-master/labelme/main.py 1", shell=True)
    return "ok"
if __name__ == "__main__":
    app.run(debug=True)

1 个答案:

答案 0 :(得分:0)

如果在邮递员中写setNextRequest:它将成功执行

postman.setNextRequest(“”);

将测试导出为Collection v2.1(推荐)后:

json文件将作为:“ postman.setNextRequest(\” \“);”

添加到您的纽曼测试

使用命令运行测试:newman运行test.js

尝试!!