51Testing软件测试论坛

标题: Postman进阶之变量&collection runner [打印本页]

作者: lsekfe    时间: 2020-11-17 10:09
标题: Postman进阶之变量&collection runner
我们都知道Postman 是接口测试工具,接口测试位于测试金字塔模型中的第二层,一般接口比较稳定,对接口进行测试效益最大。

  本篇文章我将从以下几个方面进行介绍并和例子结合讲解:

  一、学习Postman 的常用资料

  下载地址:https://www.getpostman.com/downloads/

  官网文档:https://www.getpostman.com/downloads/

  postman API 文档:https://docs.postman-echo.com/

  二、Postman的四个常用变量

  什么是变量?

  变量简单来说就是可以发生变更的值,比如登录功能每个用户都有属于自己的用户名和密码,这个用户名和密码我们就可以通过变量的方式进行更改操作

  1、本地变量

  本地变量:就是在一个url内,设置x个变量为参数

  设置格式:{{变量名}}

  案例一:本地变量的使用

  步骤1.打开postman url处输入路径地址:https://postman-echo.com/post
[attach]130676[/attach]
步骤2.切换body-x-www-form-urlencoded下
[attach]130677[/attach]
步骤3.填写key及value值,注意内容要相同
[attach]130678[/attach]
步骤4.切换pre-request script下,填写变量内容
  1. pm.variables.set("user","wx")

  2.   pm.variables.set("passwd","66666")
复制代码
[attach]130679[/attach]







欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2