Skip to content

Instantly share code, notes, and snippets.

@SanjayPG
SanjayPG / autoheal-rf-robot-framework.md
Created February 25, 2026 18:13
AutoHeal Locator + Robot Framework — Step-by-step guide

🤖 AutoHeal Locator — Robot Framework + Browser Library (Playwright) Integration Guide

Same autoheal-locator library, used in a new way for Robot Framework. No changes to the core library — just a thin wrapper to bridge RF's sync world with AutoHeal's async API.


📐 Architecture Overview

@SanjayPG
SanjayPG / CONFIGURATION.md
Last active January 16, 2026 02:40
AI-Powered Bug Logging: Automate Azure DevOps Test Failures with n8n + AI

Configuration Template

This document provides instructions for configuring the Azure DevOps Test Automation workflow in n8n.

Prerequisites

Before setting up the workflow, ensure you have:

  1. n8n instance (self-hosted or cloud)
  2. Azure DevOps account with:

AI-Powered Azure DevOps Test Case Generator

An n8n workflow that automatically generates comprehensive test cases from Azure DevOps work items using OpenAI GPT-4o-mini.

Overview

This workflow:

  1. Fetches a work item (User Story, Bug, etc.) from Azure DevOps
  2. Extracts the title, description, and acceptance criteria
  3. Uses AI to generate 12-15 comprehensive test cases covering:
@SanjayPG
SanjayPG / build-digest-message.js
Created December 10, 2025 00:39
Testing News Bot - n8n Code Snippets (All JavaScript Files)
// ============================================
// STEP 1: Get the articles selected by AI
// ============================================
// Get the output from "Parse AI Response" node
// Use .first() to explicitly get the first (and only) item
const selectedArticlesNode = $('Parse AI Response').first().json;
const allSelectedArticles = selectedArticlesNode.selected_articles;
// Take only the first 5 articles from AI's selection