当前位置:网站首页>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 !
边栏推荐
- Testing and debugging of multithreaded applications
- Career advancement Guide: recommended books for people in big factories
- Full link voltage measurement: building three models
- Properties file
- RestTemplate、Feign实现Token传递
- Simulation volume leetcode [general] 1219 Golden Miner
- Hypothesis testing learning notes
- ICLR 2022 spotlight | analog transformer: time series anomaly detection method based on correlation difference
- Selenium source code read through · 9 | desiredcapabilities class analysis
- Simulation volume leetcode [general] 1314 Matrix area and
猜你喜欢
oscp raven2靶机渗透过程
B - The Suspects
Database isolation level
Win10 cannot operate (delete, cut) files
ESP32 ESP-IDF看门狗TWDT
Buuctf-[gxyctf2019] no dolls (xiaoyute detailed explanation)
数字三角形模型 AcWing 1015. 摘花生
F - true liars (category and search set +dp)
[wechat applet] build a development tool environment
G - Supermarket
随机推荐
Buuctf-[gxyctf2019] no dolls (xiaoyute detailed explanation)
Simulation volume leetcode [general] 1296 Divide an array into a set of consecutive numbers
Simulation volume leetcode [general] 1249 Remove invalid parentheses
Redis 核心技术与实战之 基本架构:一个键值数据库包含什么?
Manage configuration using Nacos
Simulation volume leetcode [general] 1062 Longest repeating substring
Simulation volume leetcode [general] 1405 Longest happy string
Testing and debugging of multithreaded applications
PAT(乙级)2022年夏季考试
D - How Many Answers Are Wrong
Technology sharing | common interface protocol analysis
Application of Lie group in gtsam
properties文件
【C语言】qsort函数
F - true liars (category and search set +dp)
【eolink】PC客户端安装
【Tera Term】黑猫带你学TTL脚本——嵌入式开发中串口自动化神技能
LeetCode 1200. 最小绝对差
isam2运行流程
JMeter做接口测试,如何提取登录Cookie