1 Star 1 Fork 0

luoluoxx0115/httprunner_demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
debugtalk.py 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
luoluoxx0115 提交于 2021-12-23 17:42 . 修改了debugtalk.py
import time
def sleep(n_secs):
time.sleep(n_secs)
def get_token():
url = 'https://example.com'
from_data = {'username': '1342388xxxx', 'password': '00000000'}
r = requests.post ( url + '/api/login', data=from_data )
response = r.json ()
token = 'Bearer' + response['data']
return token
def get_account():
return [
{"phone":"1342388xxxx","password":"123456"},
{"phone":"1342388yyyy","password":"654321"},
]
import requests
from httprunner.api import HttpRunner
import os
import json
if __name__ == '__main__':
print(get_token())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luoluoxx0115/httprunner_demo.git
git@gitee.com:luoluoxx0115/httprunner_demo.git
luoluoxx0115
httprunner_demo
httprunner_demo
master

搜索帮助