// Wait 1 sec – message should stay, but it disappears await page.waitForTimeout(1000); await expect(errorMessage).not.toBeVisible(); // Fails in fixed version
Uncaught (in promise) TypeError: Cannot read property 'apply' of null at PromoManager.applyCode (promo.js:87) FE Replay Script
// Go to cart and apply promo await page.goto('https://shop.example.com/cart'); await page.fill('input[name="promo"]', 'SAVE10'); await page.click('button.apply-promo'); // Wait 1 sec – message should stay,