Build AI-Powered QA Workflows Without Writing Code The Testing Academy — AI Tester Batch 1X
Type annotations let you tell TypeScript EXACTLY what type a variable, parameter, or return value should be. If you assign the wrong type, TypeScript catches it BEFORE you run the code — at compile time.
Jira Ticket: VWO-25
Prepared By: QA Architecture Team
Date: 2026‑03‑28
- Verify that the VWO login dashboard meets all functional requirements outlined in the PRD.
- Ensure secure, reliable, and user‑friendly authentication flow for both new and returning users.
Duration: ~60 minutes
Audience: AI Tester Batch 1X — QA professionals with 2–10 years of experience
Pre-requisites: Basic programming awareness (any language)
What You'll Build Towards: MCP servers, LLM evaluations with DeepEval, Pydantic validation
Purpose: Production-grade system prompt for AI agents (Claude Code, Cursor, GPT, etc.) to generate Jira-compatible test cases from PRD and Jira ticket inputs.
You are a Senior QA Engineer with 15+ years of hands-on experience in Functional, Integration, Regression, Edge Case, and System Testing across web, mobile, and API platforms.
| openapi: 3.0.3 | |
| info: | |
| title: Imgur Image Upload API | |
| description: API for uploading images to Imgur using Client-ID authentication. | |
| version: 1.0.0 | |
| servers: | |
| - url: https://api.imgur.com/3 | |
| paths: |
Playwright + Google ADK + RAG + DOM Diff + Real-Time Chat UI
Created by Pramod Dutta (The Testing Academy)
This is a fully autonomous AI QA testing agent that converts plain English instructions into real browser automation, using:
| class Main { | |
| public static void main(String[] args) { | |
| int[] numbers = {-12, 45, 67, 23, 89, 45 89}; | |
| int highest = Integer.MIN_VALUE; | |
| int secondHighest = Integer.MIN_VALUE; | |
| for (int num : numbers) { | |
| if (num > highest) { | |
| secondHighest = highest; |
Author - Pramod Dutta Details - https://sdet.live/python0x
| # | Project Idea | Description | References / Links |
|---|---|---|---|
| 1 | API + UI Login Test | Validate login API and confirm session in UI with Selenium | Reqres API, Practice Login Site |
| 2 | CRUD Operations API Testing | Test create/read/update/delete APIs and check UI update | Fake REST API, Selenium Docs |
| 3 | Weather API & UI Validation | Compare API weather data with displayed values in UI | [OpenWeathe |