-
I see that session.Fuzz is a blocking call and it won't give control (after test finish) unless user press any key. Is there any events to know that the test ended? I would like to end some monitors right when the test finished. Currently they continue monitoring till user provide keyboard interrupt. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
After looking at the code, there might a way to achieve your purpose. In the Lines 1402 to 1412 in dbe720a |
Beta Was this translation helpful? Give feedback.
-
See #600 (reply in thread) |
Beta Was this translation helpful? Give feedback.
See #600 (reply in thread)
You can either disable the webinterface completely or simply make session.fuzz return immediately after testing ended with
keep_web_open = False
.