Home/Systems/AI test automation
OP-02 · AI WORKFORCE · REPLACES THE MANUAL QA CYCLE

AI test automation: every release fully tested, nobody ran a test.

AI test automation is the use of large language models to write, run, and maintain software tests, so a product is regression-tested without a QA engineer scripting each case by hand. The pipeline Paul Rahme built at a US marina-software company reads the product, its requirements, and each code change, generates test suites in Playwright, Cypress, or WebdriverIO, runs them on a schedule through GitHub Actions, heals its own failures, and reports. In production, 2025–2026, it removed about 80% of manual QA effort and ended dedicated manual regression cycles. Aldenebai builds the same pipeline for other teams' repositories.

~80% of manual QA effort removed 0 dedicated manual regression cycles per release Full regression before every ship, self-healing
Book the Automation Audit → Watch the scale model ↓ Free · 30 minutes · you leave with a written Automation Map

Scale model of the system

qa.pipeline — scale model

Scale model of the AI test pipeline: generated tests run on a schedule, failures caused by product changes heal themselves, real regressions are reported.

THE GRIND IT REPLACES

Why manual regression never keeps up with the release

Manual regression is the same work, every release. Someone opens the product and walks the critical flows: log in, create the record, edit it, bill it, export it. On a product with years of features that walk takes days, so it gets cut to the flows people remember. The ones nobody remembers are where the regressions live.

Hand-written automation helps until the product moves. A renamed button breaks a dozen tests at once, the suite goes red for the wrong reason, and the team learns to skip the flaky ones. Paul spent years on that side: before AI, his end-to-end frameworks at Eurisko (Cypress, WebdriverIO, TypeScript, Cucumber) cut manual regression by about 70%. What a hand-written framework still cannot do is write the next test, or repair itself when the product changes. That is the part the models take over.

WHAT THE SYSTEM DOES

Writes the coverage, runs it, heals it, reports

Reads the product, the requirements, and each code change to decide what needs coverage.
Generates test suites in Playwright, Cypress, or WebdriverIO, as TypeScript your team can read.
Runs full regression on a schedule and on every pull request through GitHub Actions.
Heals its own failures: repairs the broken test, re-runs it, confirms green.
Separates real defects from broken tests before anyone opens the report.
Reports every run: passed, healed, flagged, undecided.
Does not patch over a suspected product bug. That goes to a person, with the evidence.
HOW IT WORKS

From code change to green regression, step by step

GitHub Actions workflows, with models doing the reading, the writing, and the diagnosis. The tests it produces live in your repository as ordinary code.

01

Read the change

A pull request, a merge, or a schedule starts a run. The pipeline pulls the diff, the linked ticket or requirement, and the documentation for the screens and endpoints the change touches.

02

Plan the coverage

A model maps the change to the user flows it affects and compares that against the existing suite: which tests still apply, which need updating, where coverage is missing.

03

Generate the tests

Missing tests are written in your framework, following the conventions already in the repository. They land as code in a pull request, not in a vendor dashboard.

04

Run the full regression

GitHub Actions executes the whole suite on the pull request and on a schedule against the release candidate. Full regression before every release, not when someone finds a free week.

05

Heal the failures

Every failure is diagnosed before it is reported. Environment noise is retried. A test broken by a UI change is repaired, re-run, and confirmed green. A failure that points at the product is flagged as a suspected defect and left alone.

06

Report and extend

Each run ends with a report: what passed, what was healed and how, what was flagged for a person. The suite grows with the product, so coverage tracks the codebase.

UNDER THE HOOD

What a self-healing regression testing pipeline is built from

Orchestration and intelligence are kept apart. GitHub Actions owns the schedule, the triggers, and the runners. Models are called for specific jobs, each with the model that fits it, and every output is code or a structured report. State lives in your repository and your CI history.

PLAYWRIGHTCYPRESSWEBDRIVERIOGITHUB ACTIONSCLAUDEAWS BEDROCKGEMINITYPESCRIPTPYTHON
ORCHESTRATION
GitHub Actions: scheduled runs, pull request triggers, release-candidate regression.
MODELS
Claude through AWS Bedrock, and Gemini, chosen per job: analysis, generation, diagnosis.
FRAMEWORKS
Cypress, Playwright, WebdriverIO. TypeScript for the tests, Python for the glue.
INPUTS
Code diffs, tickets and requirements, product documentation, previous run history.
GUARDRAILS
Heals test-side breakage only. Suspected defects are flagged, never patched over.
REPORTING
One report per run: passed, healed, flagged. Posted to the pull request and your team's channel.
DATA & SECURITY
Model calls run through your own AWS account (Bedrock), so your data is not used to train provider models and Aldenebai holds no keys. Ticket content and the audit trail stay in your systems; PII is redacted before model calls where required; retention is set by you.
WORKS WITH
Runs today on Playwright, Cypress, WebdriverIO, and GitHub Actions with Claude, Bedrock, and Gemini. Works equally on Selenium or TestComplete suites, GitLab CI, Azure Pipelines, or Jenkins, and on other model providers.
RUNS ON
Your infrastructure, under your access controls.
GUARDRAILS & THE HUMAN IN THE LOOP

How it tells a broken test from a broken product

The dangerous failure mode of self-healing is a pipeline that heals away a real bug. So healing is scoped to the test. When a run fails, the pipeline diagnoses first. If the product did what the requirement says and the test lost its selector or step order, the test is repaired. If the product's behaviour changed, that is a product question, and the pipeline has no authority to answer it.

Everything it does is visible. Generated and repaired tests arrive as pull requests in plain TypeScript, so an engineer can read what is asserted. Every report separates passed, healed, and flagged, with the evidence attached to each flagged item. A person makes the last call on anything that might be a defect.

Heals test-side breakage only: selectors, labels, step order, timing.
Re-runs every repaired test and confirms green before recording the repair.
Flags suspected product defects with the evidence attached, and stops there.
Commits through pull requests, in code your team owns.
Does not rewrite an assertion to make a failing product pass.
RESULTS IN PRODUCTION

What changed after it went live

In production at a US marina-management software company.

~80%
of manual QA effort removed
0
dedicated manual regression cycles per release
Full
regression before every release, on schedule

Rounded from production data at a US marina-software company, 2025–2026; definitions and measurement notes are on each case study.

WHO THIS IS FOR

Teams shipping faster than their QA can test

Product teams with a release cadence and a regression debt: a web or desktop product with years of features, a small QA function or none, and a habit of shipping on hope because the full walk-through takes too long. B2B software fits best, where a regression reaches every customer at once.

You need a repository, CI, and some description of what the product should do: tickets, requirements, documentation, or the code itself. You do not need an existing suite. The first build covers the flows that hurt most when they break. Fixed scope, fixed price, agreed before any build.

B2B SAASWEB & DESKTOP PRODUCTSMARINA & DEALER SOFTWARETEAMS WITH A RELEASE CADENCE
Not sure how much of your QA it would take?
The Automation Audit maps your release cadence, the flows that break, and the framework you already run — and estimates your number before you spend anything.
Book the Automation Audit →

Questions CTOs ask about AI test automation

Does the AI test automation pipeline work with Playwright, Cypress, or WebdriverIO?

All three. The pipeline generates tests in whichever framework your repository already uses and follows your conventions for page objects, fixtures, and assertions, so the suite reads like your team wrote it. With no framework in place, Aldenebai picks the one that fits your stack and sets it up as part of the build.

What does self-healing mean in a regression testing pipeline?

Self-healing means the pipeline repairs tests broken by intentional product changes while still failing on real bugs. When a test fails, it first works out why. If the product behaved correctly and only the test broke, because a selector, label, or step changed, it repairs the test, re-runs it, and confirms green before recording the fix. If the product itself looks wrong, it leaves the test alone and flags a suspected defect for a person to decide.

Can AI generated test suites be trusted, or do they just pass everything?

Yes, if each generated test is reviewed like human code and rejected when it cannot fail. A test that passes no matter what is worse than no test. Generated tests arrive as plain TypeScript in pull requests, so your engineers read exactly what is asserted before anything joins the suite. Every run reports what passed, what was healed, and what was flagged, so nothing passes silently.

Do we still need QA engineers if the tests write themselves?

You need fewer people running regression and more judgment on what matters. The pipeline takes the grind: writing the same flows, re-running them before each release, fixing selectors after every UI change. Exploratory testing, risk decisions, and the final call on a flagged defect stay with a person.

What does the pipeline need from us to start?

A repository, a CI runner such as GitHub Actions, and whatever describes what the product should do: requirements, tickets, documentation, or the code itself. It does not need an existing test suite. The Automation Audit maps which flows to cover first and what full regression would take on your release cadence.

Ship every release fully tested.

The free Automation Audit maps your release cadence, your critical flows, and the framework you already run — and tells you honestly what a pipeline would cover. 30 minutes, written Automation Map included.

Audit: free, 30 min →