I built an AI agent that runs manual test cases in a real browser
An AI agent named qpilot has been developed to automate the execution of manual test cases in a real browser. It simplifies the testing process by allowing users to input test cases as plain text, which the agent then executes step by step. The tool utilizes Playwright and Claude Haiku to manage browser interactions and provide feedback on test outcomes.
- ▪qpilot automates manual testing by executing test cases written in plain text.
- ▪The agent interacts with a real Chrome browser, performing actions like logging in and verifying results.
- ▪It pauses for user input when encountering obstacles like OTPs or captchas.
DEV.to (Top) files mainly under programming. We currently carry 4,877 of its stories.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3966385) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Broxhq Posted on Jun 3 I built an AI agent that runs manual test cases in a real browser #ai #automation #showdev #testing The problem Every deploy — same manual test steps. Login, open the form, fill the fields, check the result. Over and over. I wanted to skip the Playwright/Selenium boilerplate and just paste my existing test cases as plain text. What I built qpilot — an AI agent that reads your manual test case and executes it in a real Chrome browser step by step.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).