postMan 使用

  • Postman功能https://www.getpostman.com/features

    • 主要用于模拟网络请求包
    • 快速创建请求
    • 回放、管理请求
    • 快速设置网络代理
  • 安装
  • 页面访问请求:www.baidu.com
    • 点击应用中“Postman”,会弹出登陆页面,完成登陆,进入Postman主页面
    • 在Get后面的输入框中输入:http://www.baidu.com,点击send按钮
  • 请求参数修改
    • 百度搜索内容参数化:https://www.baidu.com/s?wd=111111&rsv_spt=1&issp=1&f=8&rsv_bp=0&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=1&rsv_sug3=6&rsv_sug1=5&rsv_sug2=0&inputT=1212&rsv_sug4=1212。针对请求中的wd:111111,进行修改
    • 将此地址复制到Postman的地址栏中,点击Params
    • 将wd对应的值“111111”,修改为“222222”,点击Send。请求的搜索内容变为“222222”的搜索结果
  • 验证接口请求
    • 验证返回的页面中包括指定的字符串:页面中包括“222222”
    • 点击地址栏下面的Tests页卡,进入Tests脚本编写页面
    • 点击右侧的“Response body:Contains string”,脚本编辑框中会显示出验证的具体脚本:tests["Body matches string"] = responseBody.has("string_you_want_to_search");
    • 修改“string_you_want_to_search”为“222222”,完成验证代码的编写
    • 点击Send按钮,重新发送请求,并执行测试:Tests(1/2)
      • 管理请求

        • 保存请求-添加“打开百度首页请求”

          • 设置请求方式为Get,地址为www.baidu.com.点击右侧保存按钮
          • 在弹出的保存请求中设置保存的内容。Collections:百度,Request name:打开百度首页。点击“Add to Collections”
          • 此请求会被保存到Collections页卡内
          • 后期在使用时,仅需要在此Collections中找到对应的请求名,即可直接使用请求
        • 多请求维护-模块管理Folder
          • 点击“百度”后面的"...",选择"Add Folder"
          • 在弹出框中,Folder name输入“01首页”,保存。拖动请求“打开百度首页”至“01首页”文件夹中
          • Collections(系统:百度)-Folder(模块首页)-Request(请求:打开百度首页),三级的关系已经建立。可用此方法来做对应的扩展
      • 环境变量
        • 可直接通过切换环境来实现多个环境中的参数切换。常用功能:环境地址切换、全局变量使用

          1. 环境请求地址切换

              • 在"百度"下,新增”Cnblos随笔“文件夹
              • 开发环境地址 http://www.cnblogs.com/s380774061/p/4814756.html
                测试环境地址 http://www.cnblogs.com1/s380774061/p/4814756.html
            • 选择“Manage Environments--Add”,在页面中设置环境信息:Environment(开发)->key(URL)->Value(http://www.cnblogs.com),选择Submit
            • 再添加测试环境:Environment(测试)->key(URL)->Value(http://www.cnblogs.com1)
            • 在“Cnblogs随笔”文件夹内,添加请求“打开个人中心页面”:http://www.cnblogs.com/s380774061/p/4814756.html,修改“http://cnblogs.com/”为"{{URL}}"
            • 实操
              • 选择Environment中的“测试”,点击“send”发送请求。即执行测试环境的请求
              • 选择Environment中的“开发”,点击“send”发送请求。即执行开发环境的请求
          2. 全局变量使用
            • 选择“Manage Environments--Globals”
            • 在页面中输入key(user):value(s380774061),点击Submit
            • 修改“打开个人中心页面”中请求地址内"s380774061"为"{{user}}"
            • 在测试“开发”、“测试”环境时,仅需要切换环境即可完成对此user的不同环境的测试。user可随意替换成别的user名
      • 执行测试-
        • 请求:http://www.cnblogs.com/s380774061/p/4814756.html,对此页面的返回状态码为200进行验证(具体操作,可查Postman-简单使用)
        • 选择Postman主页中Runner,会弹出运行测试的界面
        • 选择"Cnblogs随笔"文件夹-"开发"环境
        • 点击"Start Test Run",查看运行测试结果
      • 分享请求
        • Collection

          • Share链接:点击Collection的‘...‘内的Share
          • Share文件:点击Collection的"Download",会下载一个名为"*.json.postman_collection".(此文件可直接导入到Postman中)
        • Environment
          • 每个Environment中有对应的Download,会下载一个名为“*.postman_environment”.(此文件可导入Postman中)
      • Newman

        • 官方说明:Postman‘s command-line companion lets you do amazing things! With Newman, you can integrate Postman collections with your build system. Or you can run automated tests for your API through a cron job.
        • 概述:集成Postman的API测试命令行执行工具
        • 首页:https://www.npmjs.com/package/newman
        • 基于Node.js,可安装在Linux/Windows/Mac
        • 安装命令:

          npm install -g newman
        • 验证安装是否成功
        • newman -V

          出现版本号,则安装成功

        • 运行方式,执行Postman导出的Collection文件
        • newman -c *.json.postman_collection
      • Newman命令行操作
        • 执行指定的Collection文件
        • newman -c *.json.postman_collection
        • 执行指点定的Collection文件及Environment文件
        • newman -c *.json.postman_collection -e *.postman_environment
        • 执行保存到服务器上的Collection
        • newman -u https://www.getpostman.com/collections/cb208e7e64056f5294e5
        • 循环执行Collection文件5次
        • newman -u https://www.getpostman.com/collections/cb208e7e64056f5294e5 -n 5
        • 详细的newman命令用法
        •   Usage: newman [options]
          
            Options:
          
              -h, --help                      output usage information
              -V, --version                   output the version number
              -c, --collection [file]         Specify a Postman collection as a JSON [file]
              -u, --url [url]                 Specify a Postman collection as a [url]
              -f, --folder [folder-name]      Run a single folder from a collection. To be used with -c or -u
              -e, --environment [file]        Specify a Postman environment as a JSON [file]
              -E, --exportEnvironment [file]  Specify an output file to dump the Postman environment before exiting [file]
              -d, --data [file]               Specify a data file to use either json or csv
              -g, --global [file]             Specify a Postman globals file [file]
              -G, --exportGlobals [file]      Specify an output file to dump Globals before exiting [file]
              -y, --delay [number]            Specify a delay (in ms) between requests
              -r, --requestTimeout [number]   Specify a request timeout (in ms) for requests
              -R, --avoidRedirects            Prevents Newman from automatically following redirects
              -s, --stopOnError               Stops the runner with code=1 when a test case fails
              -j, --noSummary                 Doesn‘t show the summary for each iteration
              -n, --number [number]           Define the number of iterations to run
              -C, --noColor                   Disable colored output
              -k, --insecure                  Disable strict ssl
              -l, --tls                       Use TLSv1
              -N, --encoding [encoding-type]  Specify an encoding for the response. Supported values are ascii,utf8,utf16le,ucs2,base64,binary,hex
              -x, --exitCode                  Continue running tests even after a failure, but exit with code=1. Incompatible with --stopOnError
              -o, --outputFile [file]         Path to file where output should be written [file]
              -O, --outputFileVerbose [file]  Path to file where full request and responses should be logged [file]
              -t, --testReportFile [file]     Path to file where results should be written as JUnit XML [file]
              -i, --import [file]             Import a Postman backup file, and save collections, environments, and globals [file] (Incompatible with any option except pretty)
              -p, --pretty                    Enable pretty-print while saving imported collections, environments, and globals
              -H, --html [file]               Export a HTML report to a specified file [file]
              -W, --whiteScreen               Black text for white screen
              -L, --recurseLimit [limit]      Do not run recursive resolution more than [limit] times. Default = 10. Using 0 will prevent any varialbe resolution
          
            Newman is a command-line collection runner for Postman. You must specify a collection file or a collection URL to run newman
          
            A collection file or URL is mandatory
            Examples:
          
              newman -c POSTMAN_COLLECTION
              newman -u POSTMAN_COLLECTION -e POSTMAN_ENVIRONMENT
              newman -c POSTMAN_COLLECTION -f SAMPLE_FOLDER
          
            For more documentation, issues and examples head over to https://github.com/postmanlabs/newman

      • Jenkins集成
        • 既然Newman支持命令行运行,那么集成Jenkins就很简单。在Jenkins的Job中添加command line,内容如下:
        • newman -c *.json.postman_collection --exitCode 1
时间: 2024-11-05 02:24:32

postMan 使用的相关文章

POSTMAN测试SpringMVC RESTFul风格的服务端接口始终得不到值

后台接口中接收参数使用DataObject(包含一个String类型的属性data)     ServletRequestDataBinder binder = new ServletRequestDataBinder(new DataObject());     binder.bind(request); 然后再POSTMAN中使用如图的方式传参: 可以发现得到的返回值是null,而且根据后台调试,确实没有得到传入的参数.切回x-www-form-urlencoded模式下然后将此对象用如下方

使用Postman完成接口测试

QQ群522720170 1. 安装 两种安装方式,我热衷于以chrome插件形式安装 Chrome插件(需要FQ,你懂的) Mac App 2. 发送请求 Postman最基础的功能就是发送http请求,支持GET/PUT/POST/DELETE,还有很多我不认识的http方法. 通过填写URL.header.body等就可以发送一个请求,这对于我们平时做一些简单的测试是够用的. 如果你的应用需要用到登录验证,可以通过填写Authorization以满足你的需求. 另外也可以使用Chrome浏

API测试利器postMan 使用教程

自从开始做API开发之后,我就在寻找合适的API测试工具.一开始不是很想用Chrome扩展,用的 WizTools 的工具,后来试过一次 Postman 之后就停不下来了,还买了付费的Jetpacks.推出Team Sync Beta之后我又把这个工具推广给团队,作为API文档使用.看到中文网络上关于这个工具的文章并不多,于是决定写一篇小文介绍一下. 一.基本功能 Postman的功能在 文档 中有介绍.不过文档略啰嗦,这里简单介绍一下主界面,入门功能就都提到了. Collections:在Po

chrome插件 postman插件 接口测试、API & HTTP 请求调试工具

Postman 是一个非常棒的Chrome扩展,提供功能强大的API & HTTP 请求调试. 它能够发送任何类型的HTTP requests (GET, HEAD, POST, PUT..),附带任何数量的参数+ headers. 支持不同的认证机制(basic, digest, OAuth),接收到的响应语法高亮(HTML,JSON或XML). Postman 能够保留了历史的请求,这样我们就可以很容易地重新发送请求,有一个“集合”功能,用于存储所有请求相同的API/域. 这个扩展还有一些更

Postman:帮助你实现快速高效的 HTTP 模拟和 API 调试

转载自:http://xiequan.info/postman-帮助你实现快速高效的http模拟和api调试 有了Postman,你可以构造简单的以及复杂的请求,保存以备以后使用,并分析由API发送的响应.Postman可以显着减少测试和开发的API所需的时间.Postman适合自己的个人开发者,小型团队或大型机构同样适用. Install Postman(安装Postman) Postman是Chrome的App,也就是说我们只能够在Chrome浏览器中使用. 这里是安装地址Google Ch

postman的巨坑 之 cookie

问题描述:一个后端接口,该接口需要校验登录态,登录态通过cookie中的一个传参k判断.在保证登录的前提下,调用机器A上的接口一直报“用户未登录”,调机器B上就没问题,于是开始排查问题. 解决过程: (1)检查机器A中相关配置文件,保证所有配置均符合测试环境要求,且与机器B配置保证一致,但问题还是没解决,排除配置文件不一致导致的问题. (2)通过观察两台机器的access日志发现,同样的登录状态,但在两台机器中的参数k却不一致,于是检查发送请求的postman参数.果然,两个post请求的coo

postman

Postman是一款功能强大的网页调试与发送网页HTTP请求的Chrome插件. 这款网页调试工具不仅可以调试简单的css.html.脚本等简单的网页基本信息,它还可以发送几乎所有类型的HTTP请求! 当开发人员需要调试一个网页是否运行正常,并不是简简单单地调试网页的HTML.CSS.脚本等信息是否运行正常,更加重要的是网页能够正确是处理各种HTTP请求,毕竟网页的HTTP请求是网站与用户之间进行交互的非常重要的一种方式,在动态网站中,用户的大部分数据都需要通过HTTP请求来与服务器进行交互.

【PostMan】1、Postman 发送json格式请求

Postman 是一个用来测试Web API的Chrome 外挂软件,可由google store 免费取得并安装于Chrome里,对于有在开发Web API的开发者相当有用,省掉不少写测试页面呼叫的工作,通常我们看到的使用情境多数是直接呼叫Web API而未随着Request发送相关所需参数,本篇就来说明如果我们想要在呼叫Web API时一并夹带JSON数据时,该如何使用Postman? 情境假设 : 采用POST的请求方式,并且须夹带JSON数据给Web API 使用方式 : (1) 输入W

Postman的使用

google浏览器的插件,下载该插件需要FQ Postman功能(https://www.getpostman.com/features) 主要用于模拟网络请求包快速创建请求回放.管理请求快速设置网络代理 安装 下载地址:https://www.getpostman.com/ 直接安装,成功后在chorme的应用程序中会多出一个Postman 使用: 点击应用中"Postman",会弹出登陆页面,完成登陆,可跳过登录,进入Postman主页面 在Get后面的输入框中输入,例如:http

(图解)接口测试从未如此简单 - Postman (Chrome插件)

一个非常有力的Http Client工具用来测试Web服务的, 我这里来介绍如何用它测试restful web service 注:转载请注明出处http://www.cnblogs.com/wade-xu/p/4228954.html 安装 进入Chrome的设置->More tools->Extensions 点击最下面的Get more extensions 搜索Postman 选择第一个点击 点击Launch APP 如何使用Postman做接口测试 填写service url 选择m