GenAI For Tester
  • Introduction
  • Session 1: Introduction to Generative AI in Testing
    • 1. Overview of Generative AI
    • 2. Popular AI Models and Their Usage
    • 3. Setting Up AI Tools for Testing
    • 4. Prompt Engineering for Software Testing
      • Prompt Managerment
  • Session 2: AI-Assisted Test Case Generation
    • Exam #1: eCommerce Domain - Checkout Flow
    • Exam #2: Mobile App - User Login and Authentication
    • Exam #3: API Testing - User Registration Endpoint
  • Session 3: Advanced AI in Test Automation
    • 🐍 Python 3.12 Setup Guide
    • Chrome AI Asistant
    • Setup Github Copilot in VS Code
    • Playwright MCP Server
    • SQLite MCP to interact with your DB
    • Browser-use Browser AI Agent
    • Postman PostBot AI for API Testing
    • Self Healing Elements with AgentQL and Playwright
  • n8n flexible AI workflow automation for technical teams
    • Setup n8n with docker
  • Build small thing with LLM
    • Create chatbot with gemini model
    • Create R.A.G with germini
    • Create AI Agent tool for query DB
  • Get selenium locator with llm and java
  • Group 1
    • Setup Local DB
Powered by GitBook
On this page
  • 🔹 macOS Installation
  • 🔹 Windows Installation
  • ✅ Post-Installation (All OS)
  1. Session 3: Advanced AI in Test Automation

🐍 Python 3.12 Setup Guide

🔹 macOS Installation

✅ Method 1: Using Homebrew (Recommended)

  1. Install Homebrew (if not already installed):

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Update Homebrew:

brew update
  1. Install Python 3.12:

brew install python@3.12
  1. Link Python 3.12 (Optional if multiple Python versions installed):

brew link python@3.12 --force
  1. Verify Installation:

python3 --version


✅ Method 2: From Official Installer

  1. Download: Visit the official page:

    https://www.python.org/downloads/mac-osx/

  2. Install: Run the .pkg installer and follow instructions.

  3. Verify:

python3.12 --version
  1. (Optional) Add to path if python3.12 not recognized:

export PATH="/Library/Frameworks/Python.framework/Versions/3.12/bin:$PATH"


🔹 Windows Installation

✅ Using Official Installer

  1. Download:

    Go to https://www.python.org/downloads/windows/

  2. Run Installer:

    • Check: ✅ “Add Python 3.12 to PATH”

    • Click “Customize installation” (recommended) or “Install Now”

  3. During install:

    • Optionally enable pip, tcl/tk, IDLE, and Add Python to environment variables

  4. Verify Installation:

    Open Command Prompt (Win + R → cmd) and run:

python --version

✅ Post-Installation (All OS)

  1. Check pip:

pip --version
  1. Upgrade pip (Optional):

python -m pip install --upgrade pip
  1. Set Up Virtual Environment:

python -m venv myenv
source myenv/bin/activate     # macOS/Linux
.\myenv\Scripts\activate      # Windows
PreviousExam #3: API Testing - User Registration EndpointNextChrome AI Asistant

Last updated 1 month ago