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

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

作者: 刘程旭 | 来源:发表于2017-11-20 14:04 被阅读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

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/qndvvxtx.html