AI prompts for testers, SDETs, and QA automation engineers

AI Prompt Library for QA Engineers and SDETs

Find copy-ready prompts for test cases, API testing, automation scripts, bug reports, BDD scenarios, test planning, and QA interviews.

Built for testers who want better AI outputs with less trial and error.

Test CasesAPI TestingAppiumPostmanBug ReportsBDDQA Interviews
prompt.qa
$
Test cases generated
  • Positive scenarios
  • Negative scenarios
  • Boundary cases
  • API validation points
  • Automation notes
50+
Copy-ready Prompts
8
QA Categories
100%
Built for Real Testing Workflows
Free
Free to Use
Categories

Prompts organized by QA workflow

Jump straight to the type of prompt you need.

Prompt Library

Search and filter copy-ready QA prompts

Filter by category or search by task, tool, or keyword.

Generate Test Cases from User Story

Test Cases

Generate structured test cases from a user story or requirement.

Best for: Manual Testers, QA Engineers, SDETs
User StoryTest CasesEdge CasesAcceptance Criteria
QA Review Tip
Review whether the AI-generated test cases cover missing fields, invalid inputs, boundary values, permissions, error messages, and regression impact.

Generate Test Cases from Acceptance Criteria

Test Cases

Convert acceptance criteria into a full coverage test case set.

Best for: QA Engineers, SDETs
Acceptance CriteriaCoverage
QA Review Tip
Ensure each acceptance criterion has at least one positive and one negative test case.

Generate Edge Cases for a Feature

Test Cases

Surface hidden edge cases most testers miss.

Best for: QA Engineers, SDETs
Edge CasesBoundary
QA Review Tip
Confirm edge cases include concurrency, timezone, locale, empty state, and permission boundaries.

Review Test Cases for Missing Coverage

Test Cases

Ask AI to audit existing test cases and flag missing scenarios.

Best for: QA Leads, Senior QA
ReviewCoverage
QA Review Tip
Manually verify flagged gaps map to real business risk before adding to the suite.

Generate Regression Test Cases

Test Cases

Build a focused regression suite for a change.

Best for: QA Engineers
Regression
QA Review Tip
Ensure regression cases are traceable to modules touched by the change.

Generate Smoke and Sanity Checklist

Test Cases

Fast build verification checklist.

Best for: QA Engineers, Release Managers
SmokeSanity
QA Review Tip
Keep smoke tests under 10 minutes; anything longer belongs in regression.

Generate API Test Cases from Requirement

API Testing

Turn an API requirement into complete positive and negative test coverage.

Best for: API Testers, SDETs
APIRESTRequirements
QA Review Tip
Check whether authentication, missing headers, invalid payload, empty values, duplicate data, rate limits, and server error handling are covered.

Generate API Test Cases from Swagger / OpenAPI

API Testing

Generate test cases directly from an OpenAPI spec.

Best for: API Testers, SDETs
SwaggerOpenAPIContract
QA Review Tip
Verify schema assertions include type, format, required fields, and nullability.

Generate Positive and Negative API Scenarios

API Testing

Balanced positive/negative scenarios for one endpoint.

Best for: API Testers
PositiveNegative
QA Review Tip
For every positive scenario, ensure there is a matching negative one.

Generate Status Code Validation Checklist

API Testing

Ensure every HTTP status is tested where relevant.

Best for: API Testers, SDETs
Status CodesHTTP
QA Review Tip
Do not skip 401, 403, 409, 422, and 429 — they are the most commonly missed.

Generate API Contract Testing Scenarios

API Testing

Consumer-driven contract test scenarios.

Best for: SDETs
ContractPact
QA Review Tip
Confirm every provider state is realistic and reproducible.

Generate API Security Test Scenarios

API Testing

OWASP-aligned API security scenarios.

Best for: Security Testers, SDETs
SecurityOWASP
QA Review Tip
Never run destructive payloads against production without written approval.

Convert Manual Test Case into Automation Scenario

Automation

Turn a manual case into an automation-ready scenario.

Best for: SDETs, Automation Engineers
AutomationSeleniumPlaywrightAppium
QA Review Tip
Verify whether the generated automation flow includes stable locators, waits, test data handling, assertions, and failure screenshots.

Generate Appium Automation Flow

Automation

Appium-specific mobile automation flow.

Best for: Mobile Automation Engineers
AppiumMobile
QA Review Tip
Confirm capabilities match the real device farm and app under test.

Generate Selenium Test Script Structure

Automation

Selenium script scaffold with best practices.

Best for: Automation Engineers
SeleniumJava
QA Review Tip
Prefer explicit waits over Thread.sleep and avoid brittle XPath.

Generate Playwright Test Scenario

Automation

Playwright test with fixtures and assertions.

Best for: Automation Engineers
PlaywrightTypeScript
QA Review Tip
Prefer getByRole and getByLabel over CSS selectors for resilience.

Generate Automation Framework Folder Structure

Automation

Recommended folder layout for a new framework.

Best for: SDETs, Automation Leads
FrameworkStructure
QA Review Tip
Structure should support parallel execution and multi-environment configs.

Review Automation Code for Maintainability

Automation

Get a code-review pass on automation code.

Best for: SDETs, Tech Leads
Code Review
QA Review Tip
Manually validate refactors — AI may suggest changes that break tests.

Write Bug Title and Description

Bug Reports

Turn a rough observation into a clean bug title and description.

Best for: Manual Testers, QA Engineers
BugJira
QA Review Tip
Title should be scannable and start with the affected area.

Improve Jira Defect Report

Bug Reports

Rewrite an existing weak defect into a strong one.

Best for: QA Engineers, QA Leads
JiraDefect
QA Review Tip
Ensure the improved report keeps the original facts — do not invent details.

Generate Actual vs Expected Result

Bug Reports

Crisp actual vs expected block for any bug.

Best for: Testers
ActualExpected
QA Review Tip
Expected result must be traceable to the requirement or spec.

Generate Defect Severity and Priority Suggestion

Bug Reports

Suggest severity/priority with reasoning.

Best for: QA Leads
SeverityPriority
QA Review Tip
Confirm severity aligns with your team's defect classification guide.

Convert Rough Notes into Professional Bug Report

Bug Reports

Turn scratch notes into a full Jira-ready report.

Best for: Testers
Bug ReportJira
QA Review Tip
Make sure the final bug report is reproducible, specific, clear, and includes environment details.

Generate Retest Comments

Bug Reports

Standardized retest and verification comments.

Best for: Testers
Retest
QA Review Tip
Always mention the build number to make retest traceable.

Convert Requirement into BDD Scenarios

BDD / Gherkin

Requirement to Gherkin conversion.

Best for: QA Automation Engineers
BDDGherkin
QA Review Tip
Check that each scenario is independent, readable, business-focused, and not overly technical.

Generate Given-When-Then Scenarios

BDD / Gherkin

Focused GWT scenarios for a small feature.

Best for: BAs, QA Engineers
Given When Then
QA Review Tip
One clear behavior per scenario — split when you see multiple Whens.

Generate Negative BDD Scenarios

BDD / Gherkin

Sad-path Gherkin scenarios.

Best for: QA Engineers
NegativeBDD
QA Review Tip
Ensure every negative scenario has a defined expected error message.

Improve Existing Gherkin Scenarios

BDD / Gherkin

Refactor weak Gherkin into clean scenarios.

Best for: QA Automation
GherkinReview
QA Review Tip
Verify refactor preserves original intent — do not lose coverage.

Convert Test Cases into Feature File

BDD / Gherkin

Convert legacy test cases into a .feature file.

Best for: QA Automation
Feature File
QA Review Tip
Feature file should be committed alongside step definitions in the same PR.

Generate Data-Driven Scenario Outline

BDD / Gherkin

Parameterized Gherkin scenario with Examples table.

Best for: QA Automation
Scenario OutlineExamples
QA Review Tip
Keep the Examples table small — split into multiple outlines when it grows past 10 rows.

Generate Mobile App Test Scenarios

Mobile Testing

Full mobile test scenarios for a feature.

Best for: Mobile QA
MobileiOSAndroid
QA Review Tip
Verify whether device variations, orientation, permissions, network changes, background/foreground behavior, and OS-specific differences are covered.

Generate Appium Mobile Test Flow

Mobile Testing

Appium flow for a specific mobile journey.

Best for: Mobile Automation
Appium
QA Review Tip
Use accessibility ids over XPath wherever possible.

Generate Android and iOS Compatibility Checklist

Mobile Testing

Cross-platform compatibility checklist.

Best for: Mobile QA
Compatibility
QA Review Tip
Align OS versions with your analytics data, not just latest releases.

Generate Mobile Permission Testing Checklist

Mobile Testing

Permission grant/deny/revoke scenarios.

Best for: Mobile QA
Permissions
QA Review Tip
Cover revoke-from-settings while the app is backgrounded — commonly missed.

Generate Offline / Poor Network Test Scenarios

Mobile Testing

Test scenarios for weak or no connectivity.

Best for: Mobile QA
NetworkOffline
QA Review Tip
Validate cached data behavior and retry logic explicitly.

Generate Mobile Accessibility Checklist

Mobile Testing

WCAG-aligned mobile a11y checklist.

Best for: Accessibility Testers
AccessibilityA11y
QA Review Tip
Always test with real TalkBack and VoiceOver — automated checks miss most issues.

Prepare API Testing Interview Answers

Interview Prep

Strong interview answers for API testing.

Best for: Interview Candidates
InterviewAPI
QA Review Tip
Customize the answer with your real project experience before using it in an interview.

Prepare Appium Interview Answers

Interview Prep

Interview prep for Appium.

Best for: Interview Candidates
InterviewAppium
QA Review Tip
Practice explaining flaky test debugging with a real example.

Explain Automation Framework in Interview

Interview Prep

Explain your framework clearly in interviews.

Best for: Interview Candidates
FrameworkInterview
QA Review Tip
Practice out loud until the 60-second overview flows naturally.

Generate SDET Introduction

Interview Prep

Polished self-introduction for SDET interviews.

Best for: Interview Candidates
Introduction
QA Review Tip
Keep it under 90 seconds — trim adjectives, keep numbers.

Generate Scenario-Based QA Questions

Interview Prep

Scenario-based QA questions with model answers.

Best for: Interview Prep
Scenario
QA Review Tip
Rewrite each model answer in your own words to sound authentic.

Generate Mock Interview Questions

Interview Prep

Full mock interview question set.

Best for: Interview Prep
Mock Interview
QA Review Tip
Time your answers — real interviews rarely allow more than 2 minutes per question.

Generate Test Plan from Requirement

Test Planning

Complete test plan from a requirement.

Best for: QA Leads
Test Plan
QA Review Tip
Make sure the plan includes realistic timelines, dependencies, risks, and test environment assumptions.

Generate Regression Strategy

Test Planning

Regression strategy for a release.

Best for: QA Leads
Regression Strategy
QA Review Tip
Tie regression scope to the change list — do not blindly re-run everything.

Generate Release Testing Checklist

Test Planning

Pre-release checklist.

Best for: QA Leads, Release Managers
Release
QA Review Tip
Include rollback plan verification as a mandatory check.

Generate Risk-Based Testing Approach

Test Planning

Risk-based prioritization for testing.

Best for: QA Leads
Risk
QA Review Tip
Validate risk ratings with the dev lead and product owner.

Generate UAT Checklist

Test Planning

User acceptance testing checklist.

Best for: QA Leads, Business Analysts
UAT
QA Review Tip
UAT should be run by business users — not the QA team.

Generate QA Sign-off Summary

Test Planning

QA sign-off summary for release.

Best for: QA Leads
Sign-off
QA Review Tip
Make Go/No-Go explicit — do not hedge.
Prompt Builder

Build Your Custom QA Prompt

Compose a tailored prompt from your task, role, and output format.

Generated prompt
Your generated prompt will appear here.
QA Review Checklist

Before You Trust AI Output, Review This

Run every AI-generated artifact through this quick review before shipping.

Are positive and negative scenarios covered?
Are edge cases and boundary values included?
Are authentication and authorization considered?
Are error messages and status codes validated?
Are test data and preconditions clear?
Are assumptions mentioned?
Can the output be directly used in Jira, Postman, or automation?
Does it match the actual business requirement?
Has a human QA reviewed the final output?
Popular Use Cases

What do you need to do today?

Prompt of the Week

Featured Prompt

API TestingFeatured

Generate Complete API Testing Checklist

Premium prompt: complete end-to-end API testing checklist.

Act as a Senior API QA Engineer. Create a complete API testing checklist for the below API module. Include functional testing, negative testing, boundary testing, authentication, authorization, headers, payload validation, response schema, status codes, performance, security, and logging validation.

API Module:
[paste module details]

Output format:
- Checklist item
- Purpose
- Expected validation
- Priority
- Automation possibility
Interview Questions

How testers use AI in real workflows

Start with a strong role and task definition, give real context from your product, ask for structured output, and always review the AI response with a QA lens before using it.
AI generates a strong first draft covering positive, negative, and boundary cases, but a QA engineer must verify business rules, missing coverage, and data conditions.
No. Always treat AI output as a draft. Validate against acceptance criteria, edge cases, and your product's real behavior.
Include endpoint, method, sample payload, expected response, auth details, and ask for positive, negative, boundary, and security scenarios explicitly.
AI accelerates page objects, test scaffolding, code reviews, and converting manual cases into automation scenarios — but stable locators and waits still need human judgment.
Yes for scaffolding and small flows. You must still validate locators, waits, and integration with your framework and device farm.
Coverage gaps, invalid input handling, permission scenarios, error messages, boundary values, and regression impact.
Learn by example. Read the prompt, run it, then compare AI output against real test artifacts to understand what good test design looks like.
FAQ

Everything about QA Prompts Lab

QA Prompts Lab is a free, copy-ready AI prompt library built for QA engineers, SDETs, and testers.
Reusable instructions you give an AI to generate test cases, bug reports, automation scaffolding, BDD scenarios, and more — tuned for QA workflows.
It drafts test cases, converts requirements into BDD, improves bug reports, and helps prepare for interviews — you review the output before use.
Prompts that assign a Senior QA role, provide the user story and acceptance criteria, and request positive, negative, boundary, and regression scenarios in a structured table.
Yes — from generating positive/negative scenarios and status code checklists to building schema validation and OWASP-aligned security tests.
Yes — convert rough notes into clear, reproducible Jira reports with steps, actual vs expected, severity, and priority suggestions.
Yes — convert requirements into Given-When-Then scenarios, feature files, and data-driven Scenario Outlines.
Yes. QA Prompts Lab is completely free for the QA and testing community.