Skip to content

Commit afd0c1d

Browse files
authored
Update test-case-prompts.md
1 parent f173a8c commit afd0c1d

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

examples/test-case-prompts.md

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,100 @@
1+
## More Examples
12

3+
#### Generate test cases from feature descriptions or user stories
4+
5+
> "Create positive and negative test cases for a password reset flow."
6+
</br>
7+
8+
#### Suggest exploratory testing ideas based on feature or risk areas
9+
10+
> "Give exploratory test ideas for a product filtering system on an e-commerce site."
11+
</br>
12+
13+
#### Structure well-written, professional bug reports
14+
15+
> "Format this bug description into a Jira-style ticket with summary, steps, and expected vs. actual behavior."
16+
</br>
17+
18+
#### Create API test cases and Postman test scripts
19+
20+
> "Write a Postman test that validates a 201 response and checks the JSON schema of a created user."
21+
</br>
22+
23+
#### Generate XPath and CSS selectors for UI automation
24+
25+
> "Give an XPath to locate the second button inside a modal with class `login-popup`."
26+
</br>
27+
28+
#### Write automation scripts (Selenium, Cypress, Playwright, etc.)
29+
30+
> "Generate a Playwright script in TypeScript that logs in and verifies the dashboard page."
31+
</br>
32+
33+
#### Build reusable Page Object Models or helper methods
34+
35+
> "Create a Selenium Page Object for a login page with methods for username, password, and login."
36+
</br>
37+
38+
#### Create or convert Jira issue templates (bugs, tasks, subtasks)
39+
40+
> "Create a Jira subtask for verifying form validation on a new registration page."
41+
</br>
42+
43+
#### Rewrite messy notes into clean documentation or summaries
44+
45+
> "Rewrite this test report as a professional QA summary with bullet points and findings."
46+
</br>
47+
48+
#### Generate realistic test data for manual or automation testing
49+
50+
> "Give me 10 examples of valid and invalid U.S. phone numbers."
51+
</br>
52+
53+
#### Get mock API responses or build REST/GraphQL payloads
54+
55+
> "Write a GraphQL mutation for creating a user with email, name, and role."
56+
</br>
57+
58+
#### Translate QA tasks or bug reports for non-technical teams
59+
60+
> "Summarize this bug report for the product team in non-technical language."
61+
</br>
62+
63+
#### Create QA documentation templates (test plans, strategy docs, etc.)
64+
65+
> "Generate a one-page test strategy template for a mobile app launch."
66+
</br>
67+
68+
#### Prepare for QA job interviews with mock questions
69+
70+
> "Give me 5 interview questions for a QA position involving API testing."
71+
</br>
72+
73+
#### Learn new QA tools interactively
74+
75+
> "Teach me how to use Cypress from scratch, with small examples."
76+
</br>
77+
78+
#### Plan your learning path from manual to automation testing
79+
80+
> "Create a 90-day learning roadmap for a manual tester to learn Selenium with Java."
81+
</br>
82+
83+
#### Get course, book, or blog recommendations
84+
85+
> "List high-quality, up-to-date free courses for learning QA automation with Python."
86+
</br>
87+
88+
#### Validate UI/UX behavior or micro-interactions
89+
90+
> "What should be tested in a tooltip that appears on hover in a form input field?"
91+
</br>
92+
93+
#### Summarize crash reports, logs, or stack traces
94+
95+
> "Explain what this error means and what might be causing it: `Uncaught TypeError: Cannot read properties of undefined`."
96+
</br>
97+
98+
#### Automate repetitive QA documentation tasks
99+
100+
> "Turn this Excel test case list into a Markdown table for GitHub."

0 commit comments

Comments
 (0)