Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. | Test Case |  Action | Expected |
  2. |---|---|---|
  3. | Register success | 1. insert data<br/>- firstName = "Vicki"<br/>- lastName = "Taylor"<br/>- gender = "female"<br/> - dateOfBirth = "1975-02-01"<br/>- tel = "(329)-859-2151"<br/>- email = "vicki.taylor49@example.com"<br/>2. press send button | 1. Redirect to success landing page<br/>2. Found "Welcome Vicki Taylor" message |
  4. | Register error<br/>(network request failed) | 1. insert data<br/>- firstName = "Vicki"<br/>- lastName = "Taylor"<br/>- gender = "female"<br/> - dateOfBirth = "1975-02-01"<br/>- tel = "(329)-859-2151"<br/>- email = "vicki.taylor49@example.com"<br/>2. press send button | 1. Redirect to error landing page |
  5. | Validation failed<br/>(press send button<br/>without any form input) | 1. press send button | 1. Show "Required" on firstName, lastName, and dateOfBirth fields |
  6. | Required first name | 1. tab firstName input<br/>2. blur input | 1. Show "Required" on firstName field |
  7. | Required last name | 1. tab lastName input<br/>2. blur input | 1. Show "Required" on lastName field |
  8. | Required date of birth | 1. tab dateOfBirth input<br/>2. blur input | 1. Show "Required" on dateOfBirth field |
  9. | Optional tel | 1. tab tel input<br/>2. blur input | 1. __Don't__ show "Required" on tel field |
  10. | Optional email | 1. tab email input<br/>2. blur input | 1. __Don't__ show "Required" on email field |
  11. | Invalid email | 1. insert data<br/>- email = "aaa"<br/>2. blur input | 1. Show "Invalid Email" on email field |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement