httprunner系列04——环境变量env和脚本函数debugtalk.py的使用
2021-02-06 14:14
标签:epo src 使用 div lazy appid 函数 response ret 前言: 一、环境变量的使用 1.2 使用${ENV(变量名)}调用环境变量 二、脚本函数 debugtalk.py 注意:运行测试后,测试报告文件夹(reports)会生成在当前工作目录CWD httprunner系列04——环境变量env和脚本函数debugtalk.py的使用 标签:epo src 使用 div lazy appid 函数 response ret 原文地址:https://www.cnblogs.com/miaoxiaochao/p/13111731.html
1.1 创建.env文件,将需要设置为环境变量的值,存储在env中import requests
def get_token():
get_params_value={
‘grant_tpye‘: ‘client_credential‘,
‘appid‘: ‘***‘,
‘secret‘: ‘*****‘
}
response =requests.get(url=‘https://api.weixin.qq.com/cgi-bin/token‘,
params=get_params_value)
return response.json()[‘access_token‘]
if __name__==‘__main__‘:
print(get_token())
- config:
name: 获取token操作
base_url: https://api.weixin.qq.com
variables:
- token: ${get_token()}
上一篇:css
文章标题:httprunner系列04——环境变量env和脚本函数debugtalk.py的使用
文章链接:http://soscw.com/index.php/essay/51754.html