Same
autoheal-locatorlibrary, 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.
An n8n workflow that automatically generates comprehensive test cases from Azure DevOps work items using OpenAI GPT-4o-mini.
This workflow:
| // ============================================ | |
| // 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 |