码迷,mamicode.com
首页 > 其他好文 > 详细

2 locust 发送 post 请求

时间:2021-01-27 13:25:57      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:post   time   com   脚本   wait   task   between   tween   pass   

1 脚本

from locust import HttpLocust, TaskSet, task, between
 
# 新建任务集
class TestLogin(TaskSet):
    @task
    def req_index(self):
        data = {
            "username": "admin",
            "password": "admin123456",
        }
        login_response = self.client.post(/XXX, data=data)
 
 
# 访问设置
class RunTest(HttpLocust):
    task_set = TestLogin
    wait_time = between(1, 2)
    host = "https://www.baidu.com"

2 命令

locust -f login.py

 

2 locust 发送 post 请求

标签:post   time   com   脚本   wait   task   between   tween   pass   

原文地址:https://www.cnblogs.com/lizitestdev/p/14329373.html

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