0
Locustを使用してlaravelアプリケーションにログインしようとしています。 私のコードは以下の通りです:私は誤りだがLaravelアプリケーションのLocastログインテスト
from locust import HttpLocust, TaskSet, task
class UserBehavior(TaskSet):
def on_start(self):
self.login()
def login(self):
response = self.client.get("/en/login")
csrftoken = response.cookies['XSRF-TOKEN']
session = response.cookies['bitrent_session']
post_data = {'username': "[email protected]", 'password': '1234', "_token": csrftoken }
with self.client.post('/en/login', post_data,
catch_response=True) as response:
print("Code: ", response.status_code)
print("Content: ", response.content
@task()
def index(self):
self.client.get("/")
class WebsiteUser(HttpLocust):
task_set = UserBehavior
min_wait = 5000
max_wait = 9000
- コード419のコンテンツをページには、不活動による有効期限が切れています。 は、誰もがイナゴ