Guest User

Untitled

a guest
Mar 10th, 2018
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. Feature: Signup
  2. In order to access features of the site
  3. A user
  4. Should be able to sign up
  5.  
  6. Scenario: Excluded state basic signup with valid data
  7. When I go to the home page
  8. And I fill in "Screen Name" with "user"
  9. And I fill in "Password" with "passwordWith1Number"
  10. And I fill in "Confirm Password" with "passwordWith1Number"
  11. And I fill in "Email Address" with "user@email.com"
  12. And I fill in "Confirm Email Address" with "user@email.com"
  13. And I press "Play Now"
  14. Then I should see "Create Account"
  15.  
  16. And I fill in "First Name" with "Longbob"
  17. And I fill in "Last Name" with "Longson"
  18. And I select "January 01, 1980" as the date
  19. And I select "United States" from "Country"
  20. And I fill in "State" with "AL"
  21. And I fill in "Postal Code" with "35004"
  22. And I check "terms_and_conditions"
  23. And I press "Start Free Trial"
  24. Then I should see "Congratulations, user!"
  25. And I should see "does offer Exclusive or VIP membership in your state at this time"
  26.  
  27. Scenario: Included state basic signup with valid data
  28. When I go to the home page
  29. And I fill in "Screen Name" with "user"
  30. And I fill in "Password" with "passwordWith1Number"
  31. And I fill in "Confirm Password" with "passwordWith1Number"
  32. And I fill in "Email Address" with "user@email.com"
  33. And I fill in "Confirm Email Address" with "user@email.com"
  34. And I press "Play Now"
  35. Then I should see "Create Account"
  36.  
  37. And I fill in "First Name" with "Longbob"
  38. And I fill in "Last Name" with "Longson"
  39. And I select "January 01, 1980" as the date
  40. And I select "United States" from "Country"
  41. And I fill in "State" with "NV"
  42. And I fill in "Postal Code" with "89178"
  43. And I check "terms_and_conditions"
  44. And I press "Start Free Trial"
  45. Then I should see "Continue as a Basic Member"
Add Comment
Please, Sign In to add comment