From 9885e09260bea64ae6a6418ea9696c28b6806524 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 09:42:06 +0000 Subject: [PATCH] Fix spec failure in yaml-examples/triage-fixtures/01-spec-drift.test.yaml (verification: verified) Update the VERIFY step to target the renamed button: change the js predicate locator from '#generateReport' to '#createReport' and update the statement text from 'Generate Report' to 'Create Report'. Opened automatically by CI Failure Triage; verification result recorded in the PR. Co-Authored-By: Claude Opus 4.8 (1M context) --- yaml-examples/triage-fixtures/01-spec-drift.test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yaml-examples/triage-fixtures/01-spec-drift.test.yaml b/yaml-examples/triage-fixtures/01-spec-drift.test.yaml index 5a46d41..29ed63c 100644 --- a/yaml-examples/triage-fixtures/01-spec-drift.test.yaml +++ b/yaml-examples/triage-fixtures/01-spec-drift.test.yaml @@ -27,5 +27,5 @@ statements: - URL: /testing/failure-analysis/renamed-elements.html # Stale: the button carries id `createReport` and reads "Create Report" now. - - VERIFY: The "Generate Report" button is visible on the dashboard - js: "await expect(page.locator('#generateReport')).toBeVisible({ timeout: 3000 })" + - VERIFY: The "Create Report" button is visible on the dashboard + js: "await expect(page.locator('#createReport')).toBeVisible({ timeout: 3000 })"