I've Been a QA Engineer for 20 Years — Here's What I'm Learning in 2026 to Stay Relevant
Suneet Malhotra
Feb 26, 2026
The Honest Career Playbook for QA Engineers in 2026
I started my career in quality engineering when Selenium was still called WebDriver, mobile testing meant pointing a camera at a phone, and "AI in testing" was a conference buzzword with no substance behind it.
Twenty years later, I'm leading test engineering at Motorola Solutions — and the ground under this profession is shifting faster than at any point in my career. This week, NIST launched a formal AI Agent Standards Initiative. Google shipped an AI agent that builds automated workflows from plain text prompts. The question I'm getting from junior engineers, senior SDETs, and even directors is the same: What do I actually need to learn right now?
Here's my honest answer.
The Skills That Still Matter (Don't Panic)
First, let's calm the noise. The fundamentals haven't expired. Understanding what to test — risk analysis, boundary conditions, exploratory heuristics — is still very much a human skill. AI can generate test cases; it cannot yet tell you which ones matter most given your specific product risk profile.
If you deeply understand:
- System architecture (how data flows, where failures cascade)
- Risk-based test strategy (what to test, in what order, with what confidence)
- Cross-functional communication (translating QA signals into business language)
…then you have a durable foundation. Build on it, don't abandon it.
Skill 1: Learn to Prompt Engineer for Testing
The QA engineers I see thriving right now treat LLMs like a junior engineer who needs very specific instructions. The output quality of AI-generated test cases is directly correlated with the quality of the prompt.
Here's a real example I use with Playwright + Claude:
Generate a Playwright TypeScript test for the checkout flow.
Context: E-commerce app, React frontend, REST API backend.
Test the following scenario: Guest checkout with invalid credit card.
Expected: Error message "Payment declined" appears within 3 seconds, cart is preserved, no order is created in DB.
Include: network interception to mock payment API failure, assertions on UI state and aria-labels, retry logic for flaky animations.
Vague prompts produce vague tests. Specific prompts produce code I can ship.
Skill 2: Understand Agentic AI Architectures
NIST's new AI Agent Standards Initiative signals something important: agentic systems are becoming infrastructure, not experiments. As QA engineers, our next frontier is testing agentic systems — which behaves nothing like testing a deterministic API.
What I'm studying right now:
- Non-determinism testing: How do you assert on an output that can vary? (Hint: validate structure and constraints, not exact values)
- Tool-call tracing: Agentic systems make tool calls. Intercepting and asserting on those calls is the new API testing
- State management in multi-agent systems: When Agent A passes context to Agent B, where do you put your test boundary?
This is genuinely hard. Which means it's genuinely valuable career territory.
Skill 3: Instrument Everything — Then Let AI Read the Data
One of the biggest shifts in my personal workflow: I now spend more time on observability setup and less time writing assertion code. Because when you have rich telemetry, an AI agent can analyze test runs, cluster failures, and surface root cause faster than any human reviewing logs.
Practical steps:
- Add structured logging to every test with run ID, step name, and timing
- Ship those logs to a queryable store (even a simple SQLite file works)
- Write a simple agent prompt: "Analyze the last 10 failed test runs. Group failures by error type and suggest the top 3 root causes."
I've reduced our mean-time-to-root-cause by about 40% using this pattern.
The Career Advice I Actually Believe
Don't try to out-automate the AI. You won't win. Instead, position yourself as the person who defines what good looks like — the quality strategist who can take an agentic system's output and say "this matters" or "this is noise."
That's the Suneet Malhotra QA automation playbook for 2026: strong fundamentals, sharp prompting skills, deep curiosity about agentic architectures, and the ability to translate all of it into business value.
The engineers I'm most excited to work with aren't the ones racing to learn every new tool. They're the ones asking the right questions about the tools they already have.
What are you learning right now? I'm genuinely curious — connect with me on LinkedIn and let me know.
This post is part of my ongoing series on AI-driven QA engineering. Check out my previous post on OpenClaw automation use cases if you haven't already.
Share this post
You Might Also Like
5 Testing Career Moves That Actually Got Me Promoted in 2026
After 20 years in QA, I've seen what separates the engineers who plateau from the ones who lead. Here are the five real moves that advanced my career — no fluff.
Career DevelopmentA Google Exec Said This Is the Best Era to Be a Developer — Here's What That Means for QA Engineers
A Google VP spends 20+ hours a week experimenting with AI. Entry-level engineering is transforming overnight. Here's my playbook for QA engineers who refuse to get left behind.
Quantitative TradingA Retry Is Not a Trading Decision
A rejected order is a decision. Retrying it without preserving the reason can turn a risk control into a duplicate trade.
Agentic AIThe Log Is Part of the Agent's Interface
An agent that can act but cannot leave a useful decision record is not autonomous. It is an opaque process with write access.
Latest Blog Posts
A Retry Is Not a Trading Decision
A rejected order is a decision. Retrying it without preserving the reason can turn a risk control into a duplicate trade.
The Log Is Part of the Agent's Interface
An agent that can act but cannot leave a useful decision record is not autonomous. It is an opaque process with write access.
The Market Is Closed Is Not a Trading Rule
A backtest can know the exchange hours and still schedule a trade into a holiday, an early close, or a stale session. Calendar state is market data.
Related Tools & Demos
The QA Field Manual to Language Models
A free 24-chapter book. Start at “what is AI, really?” and finish with a small language model you built yourself — one that reads a failing Playwright test and proposes a fix you can run. Read it in your browser, or download the PDF or the Mac app.
View Source Code →Multi-Model LLM Harness
One interface to call any AI model — capability routing, fallback chains, budgets, circuit breakers, and a quality feedback loop. A practical architecture pattern write-up.
Automated Trading System
Multi-engine trading platform with real-time risk management, regime-based strategy selection, and automated order execution.
View Source Code →
Stay in the Loop
Get weekly insights on AI-driven QA, engineering leadership, and automation strategies.
No spam, ever. Unsubscribe anytime.