@ia-qa/self-healing 1.7.20 → 1.7.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -3
- package/TUTORIAL.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,9 +33,10 @@ style your suite already uses — CSS stays CSS. The demo adds `--locators`, whi
|
|
|
33
33
|
`getByRole(…, { exact: true })` where that is provably safe: a locator immune to the *next*
|
|
34
34
|
layout change.
|
|
35
35
|
|
|
36
|
-
▶ **[The full
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
▶ **[The full 48-second version](https://www.ia-qa.com/media/heal-demo.mp4)** starts one step
|
|
37
|
+
earlier — from a red build, with `explain` telling you which failures are drift and which one is
|
|
38
|
+
**not** — then covers whether the app you mapped is sound at all, the MCP server answering an
|
|
39
|
+
agent, and the HTML report `--report` writes for a PR.
|
|
39
40
|
|
|
40
41
|
## Install
|
|
41
42
|
|
|
@@ -483,6 +484,11 @@ monorepo. Every field is documented in full in the tutorial
|
|
|
483
484
|
|
|
484
485
|
## The console — `ia-qa-heal ui`
|
|
485
486
|
|
|
487
|
+
[](https://www.ia-qa.com/media/heal-ui.mp4)
|
|
488
|
+
|
|
489
|
+
▶ **[Watch the console in 32 seconds](https://www.ia-qa.com/media/heal-ui.mp4)** — buttons pressed,
|
|
490
|
+
results rendered, nothing written.
|
|
491
|
+
|
|
486
492
|
A local web console for the rows where the tool gave up: highlighted crops of each candidate,
|
|
487
493
|
the `file:line` of every test that breaks, the verbs as plain-language buttons, and the history
|
|
488
494
|
as charts. `--shortcut` writes a desktop launcher.
|
package/TUTORIAL.md
CHANGED
|
@@ -581,13 +581,21 @@ wall — and the decision is the one thing the tool cannot take from them.
|
|
|
581
581
|
ia-qa-heal ui
|
|
582
582
|
```
|
|
583
583
|
|
|
584
|
+
[](https://www.ia-qa.com/media/heal-ui.mp4)
|
|
585
|
+
|
|
586
|
+
▶ **[Watch the console in 32 seconds](https://www.ia-qa.com/media/heal-ui.mp4)** — the buttons are
|
|
587
|
+
pressed, not pointed at: *Preview the repairs* answers `would apply 3 rewrites in 1 file · 1 still
|
|
588
|
+
need a human`, and nothing on disk changes. Real state, nothing staged but the drift itself.
|
|
589
|
+
|
|
584
590
|
A local page opens in your browser with three things a terminal cannot give you:
|
|
585
591
|
|
|
586
|
-
- **The rows waiting on a human.** Each `ambiguous` / `lost` / `rebound` row, with
|
|
587
|
-
|
|
588
|
-
`
|
|
589
|
-
|
|
590
|
-
tells you nothing
|
|
592
|
+
- **The rows waiting on a human.** Each `ambiguous` / `lost` / `rebound` row, with the `file:line`
|
|
593
|
+
of every test that will break and — the part that matters — **a sentence saying what to do about
|
|
594
|
+
it**. `ambiguous` and `rebound` rows also carry a **highlighted picture** of each candidate as it
|
|
595
|
+
looks on the page right now (needs `map --screenshots`): when five identical "Copy" buttons
|
|
596
|
+
exist, `div:nth-of-type(4) > … > button` tells you nothing, and the picture tells you which one.
|
|
597
|
+
A `lost` row has no picture and cannot have one — its element is not on the page any more, so
|
|
598
|
+
there is nothing left to photograph.
|
|
591
599
|
- **The verbs as buttons**, in plain words: *Look at the app again*, *Check for changes*,
|
|
592
600
|
*Repair my test files ✎*. Every result is a sentence, not an exit code, with the raw output one
|
|
593
601
|
click away.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ia-qa/self-healing",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.21",
|
|
4
4
|
"description": "Your Playwright, Cypress or Selenium tests break when a selector moves — this finds the element again and rewrites the test. Deterministic: no LLM decides whether your build passes. Runs entirely on your machine, with a local MCP server for agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"self-healing",
|