Lesson 5: Handle Alerts and Dropdowns

Popups & Selects

Alerts and Dropdowns

Alerts and Dropdowns

1. Dialogs

typescript

page.on('dialog', async (dialog) => {

expect(dialog.type()).toBe('alert');

await dialog.dismiss();

});

2. Select Menus

typescript

await page.selectOption('#theme-select', { label: 'Dark Mode' });

    CareerRaah - AI Learning Platform for Professionals