上一页 1 ··· 180 181 182 183 184 185 186 187 188 ··· 204 下一页
摘要: 火狐浏览器,历史版本下载:http://ftp.mozilla.org/pub/mozilla.org//firefox/releases/ 火狐浏览器,此处环境版本下载:http://ftp.mozilla.org/pub/firefox/releases/23.0b4/win32/zh-CN/ 阅读全文
posted @ 2020-01-16 17:48 小白龙白龙马 阅读(212) 评论(0) 推荐(0) 编辑
摘要: //1.验证返回状态码是否是200 pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); //2.验证返回body内是否含有某个值 pm.test("Body matches string", 阅读全文
posted @ 2020-01-15 18:26 小白龙白龙马 阅读(560) 评论(0) 推荐(0) 编辑
摘要: console.log(pm.info.requestName); 返回请求名console.log(pm.info.requestId); 返回请求idconsole.log("++++++++++++++++++++++++++");console.log(pm.response.code); 阅读全文
posted @ 2020-01-15 18:00 小白龙白龙马 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: var date01 = pm.response; console.log(typeof date01); console.log(date01); 阅读全文
posted @ 2020-01-15 16:54 小白龙白龙马 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: pm.test( "your test name",function() { var JSONDate = pm.response.JSON(); pm.expect(JSONDate.value).to.eql(100) 注意:JSONDate.value中value可以换成count、start 阅读全文
posted @ 2020-01-15 16:28 小白龙白龙马 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 将XML格式的响应体转换为json对象: console.log(xml2Json(responseBody)); 阅读全文
posted @ 2020-01-15 16:10 小白龙白龙马 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 检查响应体是否等于某个字符串: pm.test("body is correct",function(){ pm.response.to.have.body("response_body_string");}); 注意:response_body_string为响应体字符串。 阅读全文
posted @ 2020-01-15 15:53 小白龙白龙马 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 检查响应中是否包含某个header: pm.test("content-type is present",function(){ pm.response.to.have.header("Content-Type");}); 阅读全文
posted @ 2020-01-15 15:47 小白龙白龙马 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 检查响应时间是否小于某个值; pm.test("response time is less than 1200ms",function(){ pm.expect(pm.response.responseTime).to.be.below(1200);}); 阅读全文
posted @ 2020-01-15 15:41 小白龙白龙马 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 检查响应状态码中是否包某个字符串: pm.test("status code name has string",function(){ pm.response.to.have.status("OK");}); 阅读全文
posted @ 2020-01-15 15:36 小白龙白龙马 阅读(234) 评论(0) 推荐(0) 编辑
上一页 1 ··· 180 181 182 183 184 185 186 187 188 ··· 204 下一页