Interacting with Elements (TS)
Inputs
typescript
await page.locator('#username').fill('vishvas');
await page.locator('#search').press('Enter');
Checkboxes & Radio
typescript
await page.getByLabel('Accept').check();
expect(await page.getByLabel('Accept').isChecked()).toBeTruthy();