Popups & Selects

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' });