为了在响应中执行断言,首先需要将数据解析为断言可以使用的JavaScript对象。
- 解析JSON
js
const responseJson = pm.response.json();
- 解析xml
js
const responseXml = xml2Json(pm.response.text());
- 解析csv
js
const parse = require('csv-parse/lib/sync');
const responseCsv = parse(pm.response.text());
- 解析HTML
js
const $ = cheerio.load(pm.response.text());
console.log($.html());
如果不解析成JavaScript对象是不是就不可以断言?当然不是,也可以不解析响应体断言:
js
// 测试响应体是否包含某个字符串
pm.test("Body contains string", () => {
pm.expect(pm.response.text()).to.include("customer_id");
}