Automating Calendars

Date Pickers
Date pickers can be tricky because they are often complex custom components.
Approach 1: Scripting the Input
javascript
await page.locator('#birth-date').fill('2024-05-15');
Approach 2: UI Visual Navigation
javascript
await page.click('.calendar-icon');
await page.getByRole('button', { name: 'Next Month' }).click();
await page.getByRole('gridcell', { name: '15' }).click();