forked from trent_larson/crowd-funder-for-time-pwa
Fix Playwright onboarding dialog and UI flow issues
- Fix gift recording flow to use correct Person button and Unnamed selection - Add robust overlay closing loop to handle onboarding/help dialogs - Fix multiple circle-info-link selector with .first() method - Use correct aria-label for Copy to Clipboard button - Improve user registration test to handle missing registration prompts - 18/20 tests now passing (only API config test remaining)
This commit is contained in:
@@ -115,7 +115,13 @@ test('Record 9 new gifts', async ({ page }) => {
|
||||
if (i === 0) {
|
||||
await page.getByTestId('closeOnboardingAndFinish').click();
|
||||
}
|
||||
await page.getByRole('heading', { name: 'Unnamed/Unknown' }).click();
|
||||
|
||||
// Click the "Person" button to open the gift recording dialog
|
||||
await page.getByRole('button', { name: 'Person' }).click();
|
||||
|
||||
// In the dialog, click on "Unnamed" to select it as the giver
|
||||
await page.getByRole('heading', { name: 'Unnamed' }).first().click();
|
||||
|
||||
await page.getByPlaceholder('What was given').fill(finalTitles[i]);
|
||||
await page.getByRole('spinbutton').fill(finalNumbers[i].toString());
|
||||
await page.getByRole('button', { name: 'Sign & Send' }).click();
|
||||
|
||||
Reference in New Issue
Block a user