CoursePart 0 — The On-RampLesson 0.2
Lesson 0.2Part 0 — The On-Ramp

Manual vs automated testing

Why automation is a career, not just a skill.

Lesson 0.2of 24
Next

Step 1

The idea

01

Imagine a factory that makes biscuits. Every biscuit needs to be checked — right shape, right colour, no burnt edges.

Option A: hire a person to pick up each biscuit, look at it, and approve or reject it. This is manual testing.

Option B: install a camera and sensor system that scans every biscuit automatically at 500 per minute, 24 hours a day, without getting tired or distracted. This is automated testing.

Both do the same job. But one scales, and one doesn't.

Step 2

See it run

02

Here is a real number that shows why automation exists:

🏢

Netflix — 1,000+ automated tests per code change

Every time a Netflix engineer pushes code, over a thousand automated tests run automatically. They check login, video playback, recommendations, billing, and more. The entire suite finishes in minutes.

If a manual tester had to run those same checks — clicking through the app, logging in and out, testing on different devices — it would take weeks. Netflix releases code hundreds of times per day. Manual testing would make that impossible.

Automation doesn't replace testers — it multiplies them. One automated test runs forever. A manual tester can only work so many hours.

Step 3

Now you try

03

No terminal needed. Think about the last app or website you used today — Google, Instagram, Zomato, anything.

Reflection exercise

Write down 3 checks that would be:

  • • Painful to do manually every single day
  • • Easy to automate once and forget

Example: "Does the login page load?" — boring to check manually every deploy, trivial to automate.

Those 3 checks? They're your first automation backlog. In a real job, this is how QA engineers prioritise what to automate first.

Step 4

Why a tester cares

04

Here is why automation is a career, not just a skill:

Manual QA Engineer

Runs tests by hand. Limited by hours. Hard to scale. Often first to be cut.

Automation Engineer (SDET)

Writes tests once. They run forever. Scales with the team. High demand, high salary.

The Playwright test you'll write by Lesson 1.18 is a piece of automation. Run it once — or run it ten thousand times. Same effort from you. That's the career you're stepping into.

Recap

3 key points
  • 1Manual testing = a human checks everything. Slow, doesn't scale, gets tired.
  • 2Automated testing = code checks everything. Fast, runs forever, never misses.
  • 3Automation engineers are in high demand because companies ship code faster than humans can test it manually.