当前位置:网站首页>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 !
边栏推荐
猜你喜欢
isam2运行流程
Buuctf-[gxyctf2019] no dolls (xiaoyute detailed explanation)
How to extract login cookies when JMeter performs interface testing
P问题、NP问题、NPC问题、NP-hard问题详解
[postman] the monitors monitoring API can run periodically
【Postman】Collections配置运行过程
oscp raven2靶机渗透过程
MFC关于长字符串unsigned char与CString转换及显示问题
[postman] collections - run the imported data file of the configuration
G - Supermarket
随机推荐
RestTemplate、Feign实现Token传递
Simulation volume leetcode [general] 1314 Matrix area and
Simulation volume leetcode [general] 1109 Flight reservation statistics
LeetCode 731. 我的日程安排表 II
ICLR 2022 spotlight | analog transformer: time series anomaly detection method based on correlation difference
[wechat applet] build a development tool environment
isam2运行流程
对数据安全的思考(转载)
【API接口工具】postman-界面使用介绍
通过修改style设置打印页样式
[postman] collections - run the imported data file of the configuration
LeetCode 1200. 最小绝对差
The latest 2022 review of "graph classification research"
MySQL之基础知识
Caused by:org. gradle. api. internal. plugins . PluginApplicationException: Failed to apply plugin
浅谈专项测试之弱网络测试
[postman] the monitors monitoring API can run periodically
php使用redis实现分布式锁
曼哈顿距离与曼哈顿矩形-打印回字型矩阵
模拟卷Leetcode【普通】1061. 按字典序排列最小的等效字符串