SeleniumLab

Course3 · Professional QA engineering → Performance Testing Basics

3 · Professional QA engineering

Performance concepts and SLOs

18 min · Module 18

Measure latency (response time), throughput (requests/sec), error rate, and saturation. Agree SLOs (e.g., p95 create < 2s).

Lab: release 1.1.0-rc adds ~2s create delay—practice waiting vs declaring an SLO miss.

Example / notes

import time
# timing create ticket UI or API
# t0=time.perf_counter(); ...; ms=(time.perf_counter()-t0)*1000
# Compare against agreed SLO, not a guess

Practice in Lab: /lab/app/tickets/new/

Log in to track progress / take quizzes
Designing a minimal performance check →
Modules in this track