Answers for "locust python use of between"

0

locust python use of between

class WebsiteTestUser(HttpUser):
    wait_time = between(0.5, 3.0)
    
    def on_start(self):
        """ on_start is called when a Locust start before any task is scheduled """
        pass
Posted by: Guest on January-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language