Postman参数化使用以及中文乱码问题解决

2017-11-20  本文已影响0人  刘程旭

1.参数化详解

准备工作,数据准备

image image

<a name="t1" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a><a target="_blank" name="t1" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>2.使用csv文件时中文乱码可以通过使用txt文本,json文本改变调用json文件改变文件的编码格式解决

image image image

3:参数化数据调用的两种方式通过调用读取文件传入环境变量供后续脚本执行

第一种直接通过data[""]参数名调用
postman.setEnvironmentVariable("Subjectname",

data["Subjectname1"]

);
第二种直接通过data.参数名调用
postman.setEnvironmentVariable("date",

data.date1

);

image image

<a name="t3" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a><a target="_blank" name="t3" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>

批量执行时通过控制循环次数调用参数化,后续脚本调用可以直接通过赋值的环境变量调用

image
上一篇下一篇

猜你喜欢

热点阅读