postman基本使用+post请求发送中文参数

Postman是一款用于测试后端接口的软件。

第一步,注册并登陆

第二步,登陆成功后显示如下界面,进行配置,勾选自己的用途以及主题布局 postman基本使用+post请求发送中文参数_第1张图片

第三步,创建测试集合

postman基本使用+post请求发送中文参数_第2张图片

第四步、输入测试集名称、描述 postman基本使用+post请求发送中文参数_第3张图片

第五步、右键合集,添加Request postman基本使用+post请求发送中文参数_第4张图片

第六步、根据接口测试文档输入Request以下参数信息

(1)在进行GET请求时,我们仅需要输入URL,并在Params中输入要传输的参数即可,如下所示
postman基本使用+post请求发送中文参数_第5张图片
(2)注意在发送post请求时需要在header中声明内容类型
postman基本使用+post请求发送中文参数_第6张图片
然后在Body中输入要传输的数据
postman基本使用+post请求发送中文参数_第7张图片

第七步 编写测试案例

在test部分使用JavaScript语言写下测试函数,这些函数会在服务器返回请求后自动执行
postman基本使用+post请求发送中文参数_第8张图片
点击send可以看到如下结果
postman基本使用+post请求发送中文参数_第9张图片

你可能感兴趣的:(软件使用)