kimimgo opened a new pull request, #63979:
URL: https://github.com/apache/airflow/pull/63979
Fixes #63965
## Changes in `VariablePage.ts`
| Before | After | Checklist item |
|--------|-------|----------------|
| `tr:has-text(key)` | `tableRows.filter({ hasText: key })` | CSS
:has-text() → user-facing locators |
| `[id^="checkbox"][id":control"]` | `getByRole('checkbox')` | CSS attr
selector → role-based |
| `page.waitForFunction()` with DOM queries | `Promise.race` of locator
`waitFor()` | waitForFunction → locator-based waiting |
| `thead input[type='checkbox']` | `thead getByRole('checkbox')` | CSS
selector → role-based |
No test coverage or behavior changes. Test patterns only.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]