Playwright allows us to automate logging in to a Microsoft Online account. Steps We start at https://login.microsoftonline.com/ We provide the username and password, injected by using environment variables We are redirected to the main account page ms-account-login.spec.ts import { test } from '@playwright/test' test('test', async ({ page }) => { await page.goto('https://login.microsoftonline.com/') await page.getByRole('heading', { name: 'Sign in' }).click() await page.getByPlaceholder('Emai...