问题例如:响应文本里怎么断言包含工单竣工或者工单归档(包含一个即通过)?
apt.expect(apt.response.text()).to.include("工单竣工").and.include("工单归档");
在后执行脚本中,可以添加多个断言组合起来,对接口进行验证校验
apt.test("The response has all properties", () => {
// 解析响应的 JSON 并校验三个属性
const responseJson = apt.response.json();
apt.expect(responseJson.type).to.eql('vip');
apt.expect(responseJson.name).to.be.a('string');
apt.expect(responseJson.id).to.have.lengthOf(1);
});