Created
November 9, 2023 02:29
-
-
Save franko4don/85d17a712f859d34e9db3239734d4170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from locust import HttpUser, between, task | |
| class WebsiteUser(HttpUser): | |
| wait_time = between(5, 10) | |
| @task | |
| def index(self): | |
| self.client.get("/") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment