397 — should check all data¶
Description¶
Verifies that the Personal Info page displays the signed-in user's profile data exactly as it was seeded (name, email, phone with country flag, and bio).
Preconditions¶
- A fresh user has been registered and verified, with profile data seeded via the
mainProfilefixture (random first/last name, US phone+1 703 555 5678, faker bio sentence). - The user is signed in and the Account Settings → Personal Info page is open.
Steps¶
- Read the First name field. Expected: value matches the seeded first name.
- Read the Last name field. Expected: value matches the seeded last name.
- Read the Email field. Expected: value matches the user's registration email.
- Read the Phone field. Expected: value is formatted as the US national number
+1 703-555-5678. - Read the phone country flag. Expected: flag tooltip reads "United States".
- Read the About me field. Expected: value matches the seeded bio sentence.
Related¶
- Spec:
playwright/tests/integration/personal.info.spec.ts(line 64)