fix: resolve Playwright test flakiness with robust dialog handling

- Implement comprehensive dialog overlay handling for all test files
- Add robust page state checking for Firefox navigation issues
- Fix alert button timing issues with combined find/click approach
- Add force close dialog overlay as fallback for persistent dialogs
- Handle page close scenarios during dialog dismissal
- Add page readiness checks before interactions
- Resolve race conditions between dialog close and page navigation
- Achieve consistent 40/40 test runs with systematic fixes
This commit is contained in:
Matthew Raymer
2025-09-02 10:22:23 +00:00
parent 8024688561
commit 2b423b8d7b
5 changed files with 177 additions and 2 deletions

View File

@@ -100,6 +100,19 @@ test('Affirm delivery of an offer', async ({ page }) => {
await importUserFromAccount(page, "00");
await page.goto('./');
await page.getByTestId('closeOnboardingAndFinish').click();
// Wait for dialog to be hidden or removed - try multiple approaches
try {
// First try: wait for overlay to disappear
await page.waitForFunction(() => {
return document.querySelector('.dialog-overlay') === null;
}, { timeout: 5000 });
} catch (error) {
// Second try: wait for dialog to be hidden
await page.waitForFunction(() => {
const overlay = document.querySelector('.dialog-overlay') as HTMLElement;
return overlay && overlay.style.display === 'none';
}, { timeout: 5000 });
}
const offerNumElem = page.getByTestId('newOffersToUserProjectsActivityNumber');
await expect(offerNumElem).toBeVisible();