Testing Fundamentals - Non-Functional Testing
A tester wrote this stress test code snippet:
What is the main issue in this code?
for i in range(1000, 1100):
simulate_login(i)
simulate_data_request(i)
check_response_time()What is the main issue in this code?
