摘要:
火狐浏览器,历史版本下载:http://ftp.mozilla.org/pub/mozilla.org//firefox/releases/ 火狐浏览器,此处环境版本下载:http://ftp.mozilla.org/pub/firefox/releases/23.0b4/win32/zh-CN/ 阅读全文
摘要:
//1.验证返回状态码是否是200 pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); //2.验证返回body内是否含有某个值 pm.test("Body matches string", 阅读全文
摘要:
console.log(pm.info.requestName); 返回请求名console.log(pm.info.requestId); 返回请求idconsole.log("++++++++++++++++++++++++++");console.log(pm.response.code); 阅读全文
摘要:
var date01 = pm.response; console.log(typeof date01); console.log(date01); 阅读全文
摘要:
pm.test( "your test name",function() { var JSONDate = pm.response.JSON(); pm.expect(JSONDate.value).to.eql(100) 注意:JSONDate.value中value可以换成count、start 阅读全文
摘要:
将XML格式的响应体转换为json对象: console.log(xml2Json(responseBody)); 阅读全文
摘要:
检查响应体是否等于某个字符串: pm.test("body is correct",function(){ pm.response.to.have.body("response_body_string");}); 注意:response_body_string为响应体字符串。 阅读全文
摘要:
检查响应中是否包含某个header: pm.test("content-type is present",function(){ pm.response.to.have.header("Content-Type");}); 阅读全文
摘要:
检查响应时间是否小于某个值; pm.test("response time is less than 1200ms",function(){ pm.expect(pm.response.responseTime).to.be.below(1200);}); 阅读全文
摘要:
检查响应状态码中是否包某个字符串: pm.test("status code name has string",function(){ pm.response.to.have.status("OK");}); 阅读全文