HttpRunnerManager使用
Posted suitcases
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpRunnerManager使用相关的知识,希望对你有一定的参考价值。
用例:
一、request
requests---headers===》headers设置
requests---type:params===》请求参数设置,URL参数(get)
requests---type:data===》请求参数设置,Body参数,form-data数据格式(post)
requests---type:json===》请求参数设置,Body参数,json数据格式(post)
二、extract/validate
1、extract===>提取,用来从接口请求返回的结果中提取所需的内容
响应数据
提取以后放到response_userId中
2、validate===>证实/确认,用于设置断言
Check(检查项的值):$response_userId(表示引用response_userId变量)
Comparator(匹配规则):equals(等于)、contains(包含)...
Type(变量值的数据类型):String(字符串)、int(整型)...
Expected(预期值)
Comparator(匹配规则):equals(等于)、contains(包含)...
Type(变量值的数据类型):String(字符串)、int(整型)...
Expected(预期值)
以上是关于HttpRunnerManager使用的主要内容,如果未能解决你的问题,请参考以下文章