來實現專案的介面自動化測試。 介面開發之後使用
工具來做基礎測試,利用 postman
提供的一些功能,能過實現介面的自動化測試。 下面記錄一些常用的基本測試方法,方便後續查找。
相關推薦:《
postman介面測試實戰—從野路子到大神的蛻變postman測試使用說明
支援Pre-request script
以及Tests
,腳本都使用javascript
編寫,使用和正常的前端js
沒有任何差別, postman
提供了一個封裝的函式庫pm
簡化了一些操作。
測試案例
pm.test("200 test",function(){ pm.response.to.have.status(200);})
pm.test("api function ok",function(){ var res=JSON.parse(pm.response.text()) var code=res.code; var message=res.message; pm.expect(code).equal(0); pm.expect(message).equal("success");})
以上是postman是如何實現介面的自動化測試的詳細內容。更多資訊請關注PHP中文網其他相關文章!