postman斷言應用詳解
clear a global variable
清除全域性變數
pm.globals.unset("variable_key");
clear an environment variable
清除環境變數
pm.environment.unset("variable_key");
get a global variable
得到乙個全域性變數
pm.globals.get("variable_key");
get a variable
得到乙個變數
pm.variables.get("variable_key");
get an environment variable
得到乙個環境變數
pm.environment.get("variable_key");
response body:contains string
檢查response body包含字串
pm.test("body matches string", function () );
response body:convert xml body to a json object
response body:將xml轉換為json物件
var jsonobject = xml2json(responsebody);
response body:is equal to a string
檢查response body等於指定字串
pm.test("body is correct", function () );
response body:json value check
檢查response body中json某字段值
pm.test("your test name", function () );
response headers:content-type header check
檢查content-type是否包含在header返回
pm.test("content-type is present", function () );
response time is than 200ms
響應時間超過200ms
pm.test("response time is less than 200ms", function () );
send s request
傳送乙個請求
pm.sendrequest("", function (err, response) );
set a global variable
設定乙個全域性變數
pm.globals.set("variable_key", "variable_value");
set an environment variable
設定乙個環境變數
pm.environment.set("variable_key", "variable_value");
status code:code is 200
狀態碼:**是200
pm.test("status code is 200", function () );
status code:code name has string
狀態碼:**中有指定字串
pm.test("status code name has string", function () );
status code:successful post request
狀態碼:成功的post請求
pm.test("successful post request", function () );
use tiny validator for json data
為json資料使用tiny驗證器
var schema =
};var data1 = [true, false];
var data2 = [true, 123];
pm.test('schema is valid', function() );
QTP檢查點詳解
在錄製會話過程中或在編輯測試或元件時新增檢查點。在錄製了初始測試或元件之後,通常可以更為方便地定義檢查。有幾種方法可以新增檢查點。在錄製或編輯時新增檢查點 使用 插入 選單上的命令,或者單擊 測試 工具欄上的 插入檢查點 按鈕旁邊的箭頭。這將顯示與關鍵字檢視的選定步驟相關的檢查點選項的選單。只在編輯...
檢查點 為什麼要插入檢查點 檢查點的作用
一 為什麼要插入檢查點 檢查點的作用 檢查點記錄被測系統的預期結果,在執行過程中,qtp將預期結果與實際執行結果進行比較,若一致,測試結果報告中,檢查點為passed,否則為failed。只有插入檢查點的 才具有測試能力,檢查功能點是否實現 二 標準檢查點 standard checkpoint 檢...
功能測試檢查點
測試物件 flight 程式 c s 架構 檢查mercury 是否顯示在 之間 dim a,ba window flight reservation winedit order no 4 getroproperty text b cstr a msgbox b 正規表示式檢查 if語句判定成功或者...