Guest User

Untitled

a guest
May 23rd, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Feature: Checkout
  2. In order to buy one or more product
  3. As a customer
  4. I should be able to Checkout
  5.  
  6. Scenario: regular products only
  7. Given I am logged in as a customer
  8. And I have 2 non-gift products in my cart
  9. When I follow the billing_shipping page
  10. And I fill a valid shipping address
  11. And I fill a valid billing address
  12. And I select a valid shipping service type
  13. Then I should see my 2 products on the review_order_payment page
  14.  
  15. Scenario: payment
  16. Given I've added 2 non-gift products in my cart
  17. And followed through to the review_order_payment page
  18. When I fill in the credit card info
  19. And press the place-order button
  20. Then the order should be placed
  21. And I should follow to the post_payment_success page
Add Comment
Please, Sign In to add comment