Locust

Документація – https://docs.locust.io/en/stable/

Вимкнути логування попереджень при тестуванні https:

import urllib3

urllib3.disable_warnings()

Самотужки обробляти відповідь сервера

with self.client.get("/", catch_response=True) as response:
    if response.content == b"":
        response.failure("No data")