码迷,mamicode.com
首页 > 编程语言 > 详细

性能测试(Python + Locust )--初见

时间:2020-03-05 00:51:08      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:secret   oca   输入   class   index   elf   def   api   ebs   

from locust import HttpLocust, TaskSet, task


class TestIndex(TaskSet):
@task
def getIndex(self):
self.client.get("https://tianqiapi.com/api?appid=21714715&appsecret=IIyz3c8o")
print("hello")


class WebSite(HttpLocust):
task_set = TestIndex
min_wait = 1000
max_wait = 2000



‘‘‘

编写脚本
打开CMD进入源码文件目录
执行 locust -f test.py --host=https://tianqiapi.com/api?appid=21714715&appsecret=IIyz3c8o
打开浏览器访问 http://localhost:8089/
输入并发数和循环次数
‘‘‘

性能测试(Python + Locust )--初见

标签:secret   oca   输入   class   index   elf   def   api   ebs   

原文地址:https://www.cnblogs.com/lbfang/p/12416976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!