The profile form has an email field — its value is already pre-filled as [email protected]. Your job: assert that field’s value using expect.
Playwright has a dedicated assertion for checking an input’s value property. This method works the same way for fields filled with fill() and for fields that are pre-populated.
The page object is already available. Find the email field and assert that its value is '[email protected]'.
There are several ways to locate the email field — any correct selector is accepted.