Skip to content

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 mainProfile fixture (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

  1. Read the First name field. Expected: value matches the seeded first name.
  2. Read the Last name field. Expected: value matches the seeded last name.
  3. Read the Email field. Expected: value matches the user's registration email.
  4. Read the Phone field. Expected: value is formatted as the US national number +1 703-555-5678.
  5. Read the phone country flag. Expected: flag tooltip reads "United States".
  6. Read the About me field. Expected: value matches the seeded bio sentence.
  • Spec: playwright/tests/integration/personal.info.spec.ts (line 64)