上载pdf-使用newman运行POSTMAN测试时未通过测试

时间:2018-10-25 04:30:05

标签: postman newman postman-collection-runner

当我在POSTMAN上逐一运行测试时,测试通过了

enter image description here

但是使用newman运行POSTMAN测试时未通过测试。

但是,当我尝试用newman运行它时,这是我在终端中遇到的关于找不到pdf文件的错误

enter image description here

1 个答案:

答案 0 :(得分:1)

您是否在导出的邮递员收藏中编辑文件的路径?

邮递员不会保存文件的路径,因此,必须手动添加每个路径。

您必须找到请求的正文段并使用key =“ file”进行编辑:

"body": {
        "mode": "formdata",
        "formdata": [
                {
                "key": "file",
                "type": "file",
                "description": "",
                "src": "/mnt/data/www/path_to_file_on_ftp_server/file.pdf"
                }
                    ]
                }, 

您可以使用ftp位置或c:驱动器的完整路径。