1,找到collections,选择要执行的用例
2,在linux下安装newman
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - sudo apt-get install -y nodejs npm install -g newman
3,通过脚本执行导出的脚本
命令行:
newman -c beta.postman_collection.json
脚本:
#!/bin/bash while true do sleep 10 newman -c beta.postman_collection.json done