sockshop/locust/basic.py

8 lines
166 B
Python

from locust import HttpUser, between, task
class WebsiteUser(HttpUser):
wait_time = between(5, 15)
@task
def index(self):
self.client.get("/")