Every QA engineer has written a test like this at some point:

test('user receives verification email', async ({ page }) => {

await page.goto('/signup');

await page.fill('[name="email"]', 'test@example.com');

await page.click('[type="submit"]');