当前位置:网站首页>Postman core function analysis - parameterization and test report
Postman core function analysis - parameterization and test report
2022-07-06 06:19:00 【The elegance of testing】
1. Parametric processing
A parameterized : For an interface , There are a large number of test data that need to be verified in batch , Changing request parameters one by one is too time-consuming and labor-consuming , It is more efficient to use parameterized batch data processing , The general implementation is through document parameterization .
create a file Format CSV
The first line of information in the file It needs to match the parameter variable
Batch execution
Parameterized assertion
Add assertion data
// Set a variable assert
assert = pm.variables.get("assert");
// break said message word paragraph value by success
pm.test("message The field values for success", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.message).to.eql(assert);
});
2. Postman Generate test reports
Postman Use runner Runtime , The generated report can only be in Postman Inside view , It's not very convenient . So you can generate a HTML The report , Open it through the browser
Postman Need generation HTML Reports need to use newman, With the help of newman Tool generation .
2.1 install newman
newman It's using node.js Development , Specially for postman A tool plug-in for generating test reports . We need to install node.js、newman、newman plug-in unit :newman-reporter-html
download node.js:https://nodejs.org/en/ Proposed installation 15 perhaps 16 edition
npm install -g cnpm –
registry=https://registry.npm.taobao.org install newman: open cmd, Input npm install -g newman
install newman-reporter-html open cmd, Input npm install -g newman-reporter-html
2.2newman The command runs the use case
newman run Use case set .json -e Environmental documents .json -d Data files .json -r html --repoter-html-export report.html
newman run Use case set .json The meaning of running a use case set
-e Environmental documents .json Specify the running environment
-d Data files .json Specify the data to run
-r html Generate html The report
–reporter-html-export report.html Appoint html Report name is report.html
You need to export the script before execution / Data files / Environment files such as :
newman run token.postman_collection.json -d logindata.txt -e pinter project .postman_environment.json -n 3 -r html --reporter-html-export .\
After execution, the directory generates a report file
Last : It can be in the official account : Sad spicy bar ! Get one by yourself 216 Page software testing engineer interview guide document information 【 Free of charge 】. And the corresponding video learning tutorial is free to share !, It includes basic knowledge 、Linux necessary 、Shell、 The principles of the Internet 、Mysql database 、 Special topic of bag capturing tools 、 Interface testing tool 、 Test advanced -Python Programming 、Web automated testing 、APP automated testing 、 Interface automation testing 、 Testing advanced continuous integration 、 Test architecture development test framework 、 Performance testing 、 Safety test, etc. .
I recommend one 【Python Automated test communication group :746506216】, We can discuss communication software testing together , Learn software testing together 、 Interview and other aspects of software testing , Help you advance quickly Python automated testing / Test Development , On the road to high pay .
Friends who like software testing , If my blog helps you 、 If you like my blog content , please “ give the thumbs-up ” “ Comment on ” “ Collection ” One Key triple connection !
边栏推荐
- 把el-tree选中的数组转换为数组对象
- [postman] dynamic variable (also known as mock function)
- Simulation volume leetcode [general] 1061 Arrange the smallest equivalent strings in dictionary order
- MySQL之基础知识
- JWT-JSON WEB TOKEN
- JWT-JSON WEB TOKEN
- Simulation volume leetcode [general] 1414 The minimum number of Fibonacci numbers with a sum of K
- leaflet 地图
- 私人云盘部署
- leetcode 24. Exchange the nodes in the linked list in pairs
猜你喜欢
曼哈顿距离与曼哈顿矩形-打印回字型矩阵
GTSAM中李群的運用
[no app push general test plan
[postman] the monitors monitoring API can run periodically
技术分享 | 常见接口协议解析
【Tera Term】黑猫带你学TTL脚本——嵌入式开发中串口自动化神技能
Isam2 operation process
黑猫带你学UFS协议第4篇:UFS协议栈详解
Buuctf-[gxyctf2019] no dolls (xiaoyute detailed explanation)
[postman] test script writing and assertion details
随机推荐
(中)苹果有开源,但又怎样呢?
ESP32 ESP-IDF看门狗TWDT
selenium源码通读·9 |DesiredCapabilities类分析
LeetCode 1200. 最小绝对差
Simulation volume leetcode [general] 1091 The shortest path in binary matrix
Application of Lie group in gtsam
黑猫带你学eMMC协议第10篇:eMMC读写操作详解(read & write)
win10无法操作(删除、剪切)文件
自定义指定路由上的Gateway过滤器工厂
数据库-当前读与快照读
技术分享 | 常见接口协议解析
模拟卷Leetcode【普通】1218. 最长定差子序列
Overview of three core areas of Mathematics: geometry
通过修改style设置打印页样式
10m25dcf484c8g (FPGA) amy-6m-0002 BGA GPS module
【Postman】动态变量(也称Mock函数)
Simulation volume leetcode [general] 1314 Matrix area and
【Postman】测试(Tests)脚本编写和断言详解
properties文件
【API接口工具】postman-界面使用介绍