Skip to content

Instantly share code, notes, and snippets.

@labohkip81
Created August 10, 2022 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save labohkip81/c50f086ca4b85806ef5bcda59515b8bd to your computer and use it in GitHub Desktop.
Save labohkip81/c50f086ca4b85806ef5bcda59515b8bd to your computer and use it in GitHub Desktop.
from locust import HttpUser, task, between
class HelloWorldUser(HttpUser):
wait_time = between(0.5, 2.5)
@task
def hello_world(self):
self.client.get('https://elections.citizen.digital/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment