This commit is contained in:
omri zaher 2025-09-18 21:22:50 +03:00
parent a2a19318fc
commit b252bfeb9e

View file

@ -14,8 +14,9 @@ class TestBoard:
}
response = requests.post(f"{base_url}/users/login", data=login_data)
print(f"URL:{base_url}/users/login")
print(f"🔑 Login response status: {response.status_code}, body: {response.text}")
print("reposnr_JSON:", response.json())
print("response_JSON:", response.json())
if response.status_code == 200:
json_response = response.json()
if 'token' in json_response: