in src/loadgenerator/locustfile.py [0:0]
def view_home(self):
"""
load the /home page (identical to /)
fails if not logged on (redirects to /login)
"""
with self.client.get("/home", catch_response=True) as response:
for r_hist in response.history:
if r_hist.status_code > 200 and r_hist.status_code < 400:
response.failure("Not logged on: Got redirect to /login")