常规断言(前4种是常用的)
Status code: Code is 200 检查返回的状态码是否为200
Response body :Contains string 检查响应中包含指定字符
Response body :Json value check 检查响应中其中json的值
Response body :is equal to a tring 检查响应等于一个字符串
Response body :Content-Type 。。。检查是否包含响应头Content-Type
Response time is less than 200ms 检查请求耗时是否小于200ms
注意:状态断言只能有1个,业务断言可以有多个