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 Story Test Cases Edge Cases Acceptance Criteria
Show full prompt ▼ QA Review Tip
Review whether the AI-generated test cases cover missing fields, invalid inputs, boundary values, permissions, error messages, and regression impact.
Copy Prompt Customize this prompt
Generate Test Cases from Acceptance Criteria Test Cases Convert acceptance criteria into a full coverage test case set.
Best for: QA Engineers, SDETs
Acceptance Criteria Coverage
Show full prompt ▼ QA Review Tip
Ensure each acceptance criterion has at least one positive and one negative test case.
Copy Prompt Customize this prompt
Generate Edge Cases for a Feature Test Cases Surface hidden edge cases most testers miss.
Best for: QA Engineers, SDETs
Edge Cases Boundary
Show full prompt ▼ QA Review Tip
Confirm edge cases include concurrency, timezone, locale, empty state, and permission boundaries.
Copy Prompt Customize this prompt
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
Review Coverage
Show full prompt ▼ QA Review Tip
Manually verify flagged gaps map to real business risk before adding to the suite.
Copy Prompt Customize this prompt
Generate Regression Test Cases Test Cases Build a focused regression suite for a change.
Best for: QA Engineers
Regression
Show full prompt ▼ QA Review Tip
Ensure regression cases are traceable to modules touched by the change.
Copy Prompt Customize this prompt
Generate Smoke and Sanity Checklist Test Cases Fast build verification checklist.
Best for: QA Engineers, Release Managers
Smoke Sanity
Show full prompt ▼ QA Review Tip
Keep smoke tests under 10 minutes; anything longer belongs in regression.
Copy Prompt Customize this prompt
Generate API Test Cases from Requirement API Testing Turn an API requirement into complete positive and negative test coverage.
Best for: API Testers, SDETs
API REST Requirements
Show full prompt ▼ QA Review Tip
Check whether authentication, missing headers, invalid payload, empty values, duplicate data, rate limits, and server error handling are covered.
Copy Prompt Customize this prompt
Generate API Test Cases from Swagger / OpenAPI API Testing Generate test cases directly from an OpenAPI spec.
Best for: API Testers, SDETs
Swagger OpenAPI Contract
Show full prompt ▼ QA Review Tip
Verify schema assertions include type, format, required fields, and nullability.
Copy Prompt Customize this prompt
Generate Positive and Negative API Scenarios API Testing Balanced positive/negative scenarios for one endpoint.
Best for: API Testers
Positive Negative
Show full prompt ▼ QA Review Tip
For every positive scenario, ensure there is a matching negative one.
Copy Prompt Customize this prompt
Generate Status Code Validation Checklist API Testing Ensure every HTTP status is tested where relevant.
Best for: API Testers, SDETs
Status Codes HTTP
Show full prompt ▼ QA Review Tip
Do not skip 401, 403, 409, 422, and 429 — they are the most commonly missed.
Copy Prompt Customize this prompt
Generate API Contract Testing Scenarios API Testing Consumer-driven contract test scenarios.
Best for: SDETs
Contract Pact
Show full prompt ▼ QA Review Tip
Confirm every provider state is realistic and reproducible.
Copy Prompt Customize this prompt
Generate API Security Test Scenarios API Testing OWASP-aligned API security scenarios.
Best for: Security Testers, SDETs
Security OWASP
Show full prompt ▼ QA Review Tip
Never run destructive payloads against production without written approval.
Copy Prompt Customize this prompt
Convert Manual Test Case into Automation Scenario Automation Turn a manual case into an automation-ready scenario.
Best for: SDETs, Automation Engineers
Automation Selenium Playwright Appium
Show full prompt ▼ QA Review Tip
Verify whether the generated automation flow includes stable locators, waits, test data handling, assertions, and failure screenshots.
Copy Prompt Customize this prompt
Generate Appium Automation Flow Automation Appium-specific mobile automation flow.
Best for: Mobile Automation Engineers
Appium Mobile
Show full prompt ▼ QA Review Tip
Confirm capabilities match the real device farm and app under test.
Copy Prompt Customize this prompt
Generate Selenium Test Script Structure Automation Selenium script scaffold with best practices.
Best for: Automation Engineers
Selenium Java
Show full prompt ▼ QA Review Tip
Prefer explicit waits over Thread.sleep and avoid brittle XPath.
Copy Prompt Customize this prompt
Generate Playwright Test Scenario Automation Playwright test with fixtures and assertions.
Best for: Automation Engineers
Playwright TypeScript
Show full prompt ▼ QA Review Tip
Prefer getByRole and getByLabel over CSS selectors for resilience.
Copy Prompt Customize this prompt
Generate Automation Framework Folder Structure Automation Recommended folder layout for a new framework.
Best for: SDETs, Automation Leads
Framework Structure
Show full prompt ▼ QA Review Tip
Structure should support parallel execution and multi-environment configs.
Copy Prompt Customize this prompt
Review Automation Code for Maintainability Automation Get a code-review pass on automation code.
Best for: SDETs, Tech Leads
Code Review
Show full prompt ▼ QA Review Tip
Manually validate refactors — AI may suggest changes that break tests.
Copy Prompt Customize this prompt
Write Bug Title and Description Bug Reports Turn a rough observation into a clean bug title and description.
Best for: Manual Testers, QA Engineers
Bug Jira
Show full prompt ▼ QA Review Tip
Title should be scannable and start with the affected area.
Copy Prompt Customize this prompt
Improve Jira Defect Report Bug Reports Rewrite an existing weak defect into a strong one.
Best for: QA Engineers, QA Leads
Jira Defect
Show full prompt ▼ QA Review Tip
Ensure the improved report keeps the original facts — do not invent details.
Copy Prompt Customize this prompt
Generate Actual vs Expected Result Bug Reports Crisp actual vs expected block for any bug.
Best for: Testers
Actual Expected
Show full prompt ▼ QA Review Tip
Expected result must be traceable to the requirement or spec.
Copy Prompt Customize this prompt
Generate Defect Severity and Priority Suggestion Bug Reports Suggest severity/priority with reasoning.
Best for: QA Leads
Severity Priority
Show full prompt ▼ QA Review Tip
Confirm severity aligns with your team's defect classification guide.
Copy Prompt Customize this prompt
Convert Rough Notes into Professional Bug Report Bug Reports Turn scratch notes into a full Jira-ready report.
Best for: Testers
Bug Report Jira
Show full prompt ▼ QA Review Tip
Make sure the final bug report is reproducible, specific, clear, and includes environment details.
Copy Prompt Customize this prompt
Generate Retest Comments Bug Reports Standardized retest and verification comments.
Best for: Testers
Retest
Show full prompt ▼ QA Review Tip
Always mention the build number to make retest traceable.
Copy Prompt Customize this prompt
Convert Requirement into BDD Scenarios BDD / Gherkin Requirement to Gherkin conversion.
Best for: QA Automation Engineers
BDD Gherkin
Show full prompt ▼ QA Review Tip
Check that each scenario is independent, readable, business-focused, and not overly technical.
Copy Prompt Customize this prompt
Generate Given-When-Then Scenarios BDD / Gherkin Focused GWT scenarios for a small feature.
Best for: BAs, QA Engineers
Given When Then
Show full prompt ▼ QA Review Tip
One clear behavior per scenario — split when you see multiple Whens.
Copy Prompt Customize this prompt
Generate Negative BDD Scenarios BDD / Gherkin Sad-path Gherkin scenarios.
Best for: QA Engineers
Negative BDD
Show full prompt ▼ QA Review Tip
Ensure every negative scenario has a defined expected error message.
Copy Prompt Customize this prompt
Improve Existing Gherkin Scenarios BDD / Gherkin Refactor weak Gherkin into clean scenarios.
Best for: QA Automation
Gherkin Review
Show full prompt ▼ QA Review Tip
Verify refactor preserves original intent — do not lose coverage.
Copy Prompt Customize this prompt
Convert Test Cases into Feature File BDD / Gherkin Convert legacy test cases into a .feature file.
Best for: QA Automation
Feature File
Show full prompt ▼ QA Review Tip
Feature file should be committed alongside step definitions in the same PR.
Copy Prompt Customize this prompt
Generate Data-Driven Scenario Outline BDD / Gherkin Parameterized Gherkin scenario with Examples table.
Best for: QA Automation
Scenario Outline Examples
Show full prompt ▼ QA Review Tip
Keep the Examples table small — split into multiple outlines when it grows past 10 rows.
Copy Prompt Customize this prompt
Generate Mobile App Test Scenarios Mobile Testing Full mobile test scenarios for a feature.
Best for: Mobile QA
Mobile iOS Android
Show full prompt ▼ QA Review Tip
Verify whether device variations, orientation, permissions, network changes, background/foreground behavior, and OS-specific differences are covered.
Copy Prompt Customize this prompt
Generate Appium Mobile Test Flow Mobile Testing Appium flow for a specific mobile journey.
Best for: Mobile Automation
Appium
Show full prompt ▼ QA Review Tip
Use accessibility ids over XPath wherever possible.
Copy Prompt Customize this prompt
Generate Android and iOS Compatibility Checklist Mobile Testing Cross-platform compatibility checklist.
Best for: Mobile QA
Compatibility
Show full prompt ▼ QA Review Tip
Align OS versions with your analytics data, not just latest releases.
Copy Prompt Customize this prompt
Generate Mobile Permission Testing Checklist Mobile Testing Permission grant/deny/revoke scenarios.
Best for: Mobile QA
Permissions
Show full prompt ▼ QA Review Tip
Cover revoke-from-settings while the app is backgrounded — commonly missed.
Copy Prompt Customize this prompt
Generate Offline / Poor Network Test Scenarios Mobile Testing Test scenarios for weak or no connectivity.
Best for: Mobile QA
Network Offline
Show full prompt ▼ QA Review Tip
Validate cached data behavior and retry logic explicitly.
Copy Prompt Customize this prompt
Generate Mobile Accessibility Checklist Mobile Testing WCAG-aligned mobile a11y checklist.
Best for: Accessibility Testers
Accessibility A11y
Show full prompt ▼ QA Review Tip
Always test with real TalkBack and VoiceOver — automated checks miss most issues.
Copy Prompt Customize this prompt
Prepare API Testing Interview Answers Interview Prep Strong interview answers for API testing.
Best for: Interview Candidates
Interview API
Show full prompt ▼ QA Review Tip
Customize the answer with your real project experience before using it in an interview.
Copy Prompt Customize this prompt
Prepare Appium Interview Answers Interview Prep Interview prep for Appium.
Best for: Interview Candidates
Interview Appium
Show full prompt ▼ QA Review Tip
Practice explaining flaky test debugging with a real example.
Copy Prompt Customize this prompt
Explain Automation Framework in Interview Interview Prep Explain your framework clearly in interviews.
Best for: Interview Candidates
Framework Interview
Show full prompt ▼ QA Review Tip
Practice out loud until the 60-second overview flows naturally.
Copy Prompt Customize this prompt
Generate SDET Introduction Interview Prep Polished self-introduction for SDET interviews.
Best for: Interview Candidates
Introduction
Show full prompt ▼ QA Review Tip
Keep it under 90 seconds — trim adjectives, keep numbers.
Copy Prompt Customize this prompt
Generate Scenario-Based QA Questions Interview Prep Scenario-based QA questions with model answers.
Best for: Interview Prep
Scenario
Show full prompt ▼ QA Review Tip
Rewrite each model answer in your own words to sound authentic.
Copy Prompt Customize this prompt
Generate Mock Interview Questions Interview Prep Full mock interview question set.
Best for: Interview Prep
Mock Interview
Show full prompt ▼ QA Review Tip
Time your answers — real interviews rarely allow more than 2 minutes per question.
Copy Prompt Customize this prompt
Generate Test Plan from Requirement Test Planning Complete test plan from a requirement.
Best for: QA Leads
Test Plan
Show full prompt ▼ QA Review Tip
Make sure the plan includes realistic timelines, dependencies, risks, and test environment assumptions.
Copy Prompt Customize this prompt
Generate Regression Strategy Test Planning Regression strategy for a release.
Best for: QA Leads
Regression Strategy
Show full prompt ▼ QA Review Tip
Tie regression scope to the change list — do not blindly re-run everything.
Copy Prompt Customize this prompt
Generate Release Testing Checklist Test Planning Pre-release checklist.
Best for: QA Leads, Release Managers
Release
Show full prompt ▼ QA Review Tip
Include rollback plan verification as a mandatory check.
Copy Prompt Customize this prompt
Generate Risk-Based Testing Approach Test Planning Risk-based prioritization for testing.
Best for: QA Leads
Risk
Show full prompt ▼ QA Review Tip
Validate risk ratings with the dev lead and product owner.
Copy Prompt Customize this prompt
Generate UAT Checklist Test Planning User acceptance testing checklist.
Best for: QA Leads, Business Analysts
UAT
Show full prompt ▼ QA Review Tip
UAT should be run by business users — not the QA team.
Copy Prompt Customize this prompt
Generate QA Sign-off Summary Test Planning QA sign-off summary for release.
Best for: QA Leads
Sign-off
Show full prompt ▼ QA Review Tip
Make Go/No-Go explicit — do not hedge.
Copy Prompt Customize this prompt