diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_flow_export.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/mitmproxy/test_flow_export.py b/test/mitmproxy/test_flow_export.py index a4264e10..6654d990 100644 --- a/test/mitmproxy/test_flow_export.py +++ b/test/mitmproxy/test_flow_export.py @@ -205,6 +205,9 @@ class UserBehavior(TaskSet): headers=headers, ) + ### Additional tasks can go here ### + + class WebsiteUser(HttpLocust): task_set = UserBehavior min_wait=1000 @@ -237,6 +240,9 @@ class UserBehavior(TaskSet): data=data, ) + ### Additional tasks can go here ### + + class WebsiteUser(HttpLocust): task_set = UserBehavior min_wait=1000 @@ -280,6 +286,9 @@ class UserBehavior(TaskSet): data=data, ) + ### Additional tasks can go here ### + + class WebsiteUser(HttpLocust): task_set = UserBehavior min_wait=1000 |