console: CNS-56 Add 'Create App Password' button to App Password page. - #38591
console: CNS-56 Add 'Create App Password' button to App Password page.#38591jdonelson wants to merge 1 commit into
Conversation
QA LLM Review1. MEDIUM -- New button's accessible name collides with the navbar "Create New" locator in the platform e2e test
The new header button is named "Create New App Password", and Playwright's DetailsThe spec navigates to The spec already relies on this substring behaviour a few lines up, where the "App Password" popover entry is pinned with - await page.getByRole("button", { name: "Create new" }).click();
+ await page.getByRole("button", { name: "Create New", exact: true }).click();This spec runs on every PR in both |
Motivation
Add a button that launches the "Create App Password" modal. The trigger was previously hidden in the "Create New" menu, generating feedback from users who weren't able to find it.
Closes CNS-56
Description
Button is hidden for users in Impersonation mode.
Verification
Added automated tests that confirm expected behavior and confirm that it is hidden for impersonation users.