Lesson 4: Handle Inputs and Buttons

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();

    CareerRaah - AI Learning Platform for Professionals