📊 QA Intelligence Report

Branch: no_ai | Run ID: 25eee0c0
Total Duration: 40.54s
Passed
3
Healed
1
Failed
1
Flaky
0
Test Executions (5)
PASSED test_login_healing_standard_user
32.67s
FAILED test_no_ai_assertion_failure
5.64s
PASSED test_flaky_demo
0.60s
PASSED test_inventory_sort_price_low_to_high
0.83s
PASSED test_cart_shows_correct_item_count
0.81s
Self-Healing Activities (1)
test_login_healing_standard_user
Action: fill | Target: //input[@id='user-name-broken']
Healed to: //*[@id="user-name"]
Before Heal
Before Heal
After Heal
After Heal
Failure Classifications
Assertion 2
Proposed PR Git Patch
diff --git a/tests/no_ai/test_no_ai_flows.py b/tests/no_ai/test_no_ai_flows.py
--- a/tests/no_ai/test_no_ai_flows.py
+++ b/tests/no_ai/test_no_ai_flows.py
@@ -39,5 +39,5 @@
page = setup_teardown
# ⚠️ INTENTIONALLY BROKEN — keeps the self-healing demo alive on every CI run
- page.locator("//input[@id='user-name-broken']").fill(
+ page.locator("//*[@id="user-name"]").fill(
"standard_user"
) # BROKEN — DO NOT CHANGE