TL;DR
The traditional QA interview — "write a Selenium script on the whiteboard" — is dying. In 2026, companies are testing for AI tool proficiency, test strategy design, and system thinking. This guide covers the new interview formats, sample questions, and how to prepare.
The QA Interview is Broken
For over a decade, QA interviews followed a predictable formula:
- "Tell me about your experience with Selenium/Cypress."
- "Write a test script for a login page."
- "How would you handle a flaky test?"
- "What's the difference between smoke and regression testing?"
This format tested one thing: can you write automation scripts? In 2026, that's the least interesting thing a QA engineer does. AI can generate Selenium scripts in seconds. The real value is in knowing what to test, why, and how to build a strategy that scales.
Here's the data:
- 67% of QA leads say their interview process changed significantly in the past 12 months (QA Industry Survey, 2026)
- AI tool proficiency is now tested in 41% of QA interviews, up from 8% in 2024
- System design rounds have replaced coding rounds at 35% of companies hiring senior QA engineers
- "Prompt engineering for testing" is appearing as a job requirement on 23% of QA automation postings
What's Dying: The Old QA Interview
Interview components that are disappearing or shrinking:
Whiteboard Scripting
Asking candidates to write Selenium/Cypress scripts from memory is increasingly pointless. AI assistants generate test scripts faster and with fewer bugs. Testing this skill tells you nothing about whether a candidate can design a test strategy.
Tool-Specific Trivia
"What's the difference between cy.get() and cy.find()?" — this is documentation, not engineering judgment. Memorizing API differences is less valuable when Claude Code can answer these questions instantly.
Manual Test Case Writing
Spending 30 minutes writing test cases for a feature description tests patience, not skill. AI can generate comprehensive test cases in seconds. The value is in reviewing, prioritizing, and identifying gaps in AI-generated test plans.
Process Recitation
"Describe your bug lifecycle" or "Explain the STLC" — these questions test whether someone read a textbook, not whether they can actually improve quality in a real team.
What's Replacing It: The Modern QA Interview
Round 1: AI-Augmented Testing Assessment
The candidate gets a real product scenario and access to AI tools. They're evaluated on:
- How they use AI to generate initial test plans and scripts
- How they critique and improve AI-generated output
- Whether they identify gaps that the AI missed
- How they handle AI hallucinations in test suggestions
Sample Exercise:
Scenario: You're the QA lead for a fintech app that just added
a new feature: AI-powered expense categorization. Users take
a photo of a receipt, and the AI categorizes the expense.
Using Claude (provided), generate an initial test strategy.
Then:
- Identify 3 critical gaps in the AI-generated strategy
- Add edge cases the AI missed
- Prioritize the test cases by risk
- Estimate effort and propose a phased approach
Time: 45 minutes
Round 2: Test Strategy Design
This replaces the old "write a script" round. Candidates are given a system architecture diagram and asked to design a comprehensive test strategy:
- What layers need testing? (unit, integration, e2e, contract, performance)
- Where does automation add value vs. where is manual testing better?
- How do you handle non-deterministic components? (AI features, third-party APIs)
- What metrics define success? (coverage is no longer enough)
What hiring managers look for: Systems thinking, risk-based prioritization, pragmatism over perfectionism.
Round 3: Live Debugging / Investigation
Instead of coding, candidates investigate a real (or realistic) bug:
Scenario: Users report that the checkout flow works in staging
but fails intermittently in production. Error rate: ~5%.
No stack trace — the page just shows a generic error.
Here's access to:
- Application logs (last 24 hours)
- Monitoring dashboard (Datadog)
- The CI/CD pipeline config
- The test suite results (all passing)
Walk us through your investigation. What do you check first?
What's your hypothesis? How do you confirm it?
This tests diagnostic thinking, which is far more valuable than scripting ability.
Round 4: Communication and Influence
Senior QA roles now include a round where candidates demonstrate how they influence engineering decisions:
- "A PM wants to ship a feature with known bugs. How do you handle this?"
- "The dev team pushes back on writing unit tests. What's your approach?"
- "You've identified a systemic quality issue. Present your findings to an engineering VP."
The New Skills Being Tested
| Old Skill | New Skill | Why It Changed |
|---|---|---|
| Write Selenium scripts | Design AI-augmented test strategies | AI generates scripts; humans design strategy |
| Know tool APIs by heart | Evaluate and select tools for context | Tool landscape changes yearly; judgment matters more |
| Write test cases manually | Review and improve AI-generated test plans | AI generates 80%; humans add the critical 20% |
| Follow test processes | Design quality processes for the team | Senior QA is about influence, not execution |
| Report bugs clearly | Analyze quality trends and predict risk | Bug reporting is table stakes; risk analysis is differentiating |
| Manual regression testing | Design self-healing test architectures | Manual regression is automated away |
Sample Modern QA Interview Questions
Practice these — they're drawn from actual 2026 interview loops at companies I've worked with:
AI-Augmented Testing
- "You have Claude Code available. Walk me through how you'd use it to build a test suite for a new microservice. Where do you trust the AI output, and where do you override it?"
- "An AI test generator creates 200 test cases for a feature. How do you decide which ones to keep, modify, or discard?"
- "How would you test an AI-powered search feature where results are non-deterministic?"
Strategy and Architecture
- "Design a test strategy for a system that processes 10,000 transactions per second with 99.99% uptime requirements. What do you prioritize?"
- "You inherit a test suite with 5,000 tests. 20% are flaky. 30% are redundant. 10% haven't been updated in a year. What's your plan?"
- "How do you decide the right ratio of unit tests to integration tests to e2e tests for a new project?"
Problem-Solving
- "A critical production bug wasn't caught by your test suite. Walk me through your post-mortem process."
- "Your CI pipeline takes 45 minutes. Engineering wants it under 10. What's your approach?"
- "The product team wants to release weekly instead of monthly. What changes to your QA process?"
Leadership and Influence
- "How do you measure the ROI of test automation to justify headcount to leadership?"
- "A senior developer says 'We don't need QA — our developers write their own tests.' How do you respond?"
- "You need to build a QA team from scratch for a startup. What's your hiring plan for the first 3 hires?"
How to Prepare: A 30-Day Plan
Week 1: AI Tool Proficiency
- Get hands-on with Claude Code, Cursor, or GitHub Copilot for test generation
- Practice generating test plans, reviewing AI output, and identifying gaps
- Learn prompt engineering basics for testing contexts
Week 2: Test Strategy Design
- Study system architecture patterns (microservices, event-driven, serverless)
- Practice designing test strategies for different architectures
- Learn to articulate trade-offs (speed vs. coverage, cost vs. thoroughness)
Week 3: Investigation and Debugging
- Practice reading logs, traces, and monitoring dashboards
- Study common production failure patterns (race conditions, memory leaks, cascading failures)
- Build a mental framework for systematic investigation
Week 4: Communication and Mock Interviews
- Practice presenting test strategies to non-technical stakeholders
- Prepare stories about quality impact you've delivered (use metrics)
- Do mock interviews focusing on the new question types above
What Hiring Managers Actually Want
I've talked to dozens of QA hiring managers in 2026. Here's what they consistently say:
- "Show me you can think, not just code." Script-writing is commoditized. Judgment and strategy are not.
- "Demonstrate you can work with AI tools, not against them." Candidates who dismiss AI tools or who blindly accept AI output both fail.
- "I need someone who can influence developers." Quality is a team sport. QA engineers who work in isolation add less value.
- "Bring data, not opinions." "I think we need more tests" loses to "Our defect escape rate increased 15% after we cut integration tests."
- "Show me you've adapted." The QA landscape is changing fast. Candidates who are actively learning new approaches stand out.
Frequently Asked Questions
Do I still need to know Selenium/Playwright/Cypress?
Yes — but the bar is different. You need to understand these tools well enough to design frameworks, debug issues, and make architectural decisions. You don't need to memorize every API method. The interview won't ask you to write a script from scratch; it'll ask you to design a test architecture that uses these tools effectively.
Are coding rounds going away entirely?
Not entirely, but they're shrinking. Many companies still include a light coding exercise, but it's focused on reading and debugging code rather than writing from scratch. The shift is from "implement this" to "evaluate this" — reviewing test code, identifying issues, and suggesting improvements.
How do I prove AI proficiency without formal certification?
Build a portfolio. Create a GitHub repo showing: an AI-augmented test framework, a comparison of AI-generated vs. manually written test plans, or a tool that uses Claude API for test generation. Write about your AI testing experiences on LinkedIn or a blog. Concrete examples beat certifications every time.
Is this shift happening at all company sizes?
Startups and mid-size companies are furthest ahead — they adopt new practices faster. Large enterprises are moving slower but catching up. If you're interviewing at a Fortune 500, expect a mix of traditional and modern questions. At a startup, expect almost entirely modern formats.
What if I'm a manual tester transitioning to automation?
Good news: the new interview format actually favors strong manual testers who think strategically. Your exploratory testing instincts, edge case identification, and user empathy are harder to teach than scripting. Learn AI tools (they lower the scripting barrier), and lean into your strategic testing strengths in interviews.
The Bottom Line
The QA interview is evolving because the QA role is evolving. Scripting was the hard part in 2015. In 2026, the hard part is designing test strategies for complex, AI-powered, rapidly-changing systems — and that's exactly what interviews should be testing.
Prepare for the interview of 2026, not 2020. The candidates who adapt will land the best roles.
Need help preparing for modern QA interviews or building your AI testing skills?
Related Articles:
Tayyab Akmal
AI & QA Automation Engineer
6 years of catching critical bugs in fintech, e-commerce, and SaaS — then building the Playwright and Selenium automation that prevents them from shipping again.