Skip to content

Instantly share code, notes, and snippets.

View PramodDutta's full-sized avatar
🎯
Focusing

Promode PramodDutta

🎯
Focusing
View GitHub Profile
@PramodDutta
PramodDutta / langflow-for-qa-tutorial.md
Created April 12, 2026 03:22
langflow-for-qa-tutorial.md

LangFlow for QA/SDET — The Complete Tutorial

Build AI-Powered QA Workflows Without Writing Code The Testing Academy — AI Tester Batch 1X


Table of Contents

  1. What Is LangFlow?
@PramodDutta
PramodDutta / TS_Topics_TheTestingAcademy.md
Created April 11, 2026 01:25
TS_Topics_TheTestingAcademy

🟦 TypeScript-Only Features — TheTestingAcademy

Everything That EXISTS in TypeScript but NOT in JavaScript

For QA Engineers & SDETs



🟦 1. Type Annotations (:string, :number)

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.

Test Plan – VWO Login Dashboard

Jira Ticket: VWO-25
Prepared By: QA Architecture Team
Date: 2026‑03‑28


1. Objectives

  • 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.

🟩 JavaScript Advanced Topics — TheTestingAcademy

For QA Engineers & SDETs



🟩 TOPIC 1: Callback Functions — Sync, Async, Callback Hell & Pyramid of Doom


@PramodDutta
PramodDutta / Python_AI.md
Created March 22, 2026 05:58
Python_AI.md

Python Foundations for AI Testers

A Practical Tutorial for QA Engineers & SDETs Entering the AI World

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


QA Test Case Generator — Agent Prompt v2.0

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.


System Prompt

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:

AutoQA

AI-Powered Autonomous Testing Framework

Playwright + Google ADK + RAG + DOM Diff + Real-Time Chat UI
Created by Pramod Dutta (The Testing Academy)


📌 What This Project Is

This is a fully autonomous AI QA testing agent that converts plain English instructions into real browser automation, using:

@PramodDutta
PramodDutta / Main.java
Created October 5, 2025 05:11
2nd High number in aRRAY
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;
@PramodDutta
PramodDutta / 14 Python Projects (API Testing + Selenium) for QA.md
Created September 17, 2025 07:29
14 Python Projects (API Testing + Selenium) for QA.md

🐍 14 Python Projects (API Testing + Selenium) for QA

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