Advertisement
Guest User

Untitled

a guest
May 17th, 2017
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.     Feature: SC_01 - Adding a product to basket
  3.       As a visitor on the website
  4.       I want to have option to add products to basket
  5.       So that I can add the products that I need
  6.    
  7.       Scenario: SC_01 - Adding a product to basket
  8.         Given I am on a product detail page
  9.         When I select the quantity some product equal to 100
  10.         And I click the add to basket button
  11.         Then Products are added to shopping basket
  12.      
  13.       Scenario: SC_02 - Products of all types
  14.         Given I am on a product detail page
  15.         When I choose the quantity of all products equal to 1
  16.         And I click the add to basket button
  17.         Then Products are added to shopping basket
  18.  
  19. -------------------------------------------------------------------------------------------
  20.  
  21.     Feature: Shopping basket
  22.       As a visitor on the website
  23.       I want to have a shopping basket
  24.       So that I can see the products and costs of what I want to purchase
  25.  
  26.       Scenario: SC_03 - Shopping basket
  27.         Given I'm on the shopping website
  28.         When I have added an item to my shopping bag
  29.         Then Product is added to the shopping basket
  30.         And I can see all added products quantity in my shopping basket
  31.         And I can see the total price with currency to payment
  32.  
  33. -------------------------------------------------------------------------------------------
  34.  
  35.     Feature: Delete products
  36.       As a visitor on the website
  37.       I want to have the option to remove products
  38.       So that I can give up what I want to buy
  39.      
  40.       Scenario: SC_04 - Delete products
  41.         Given I'm on the shopping website
  42.         When I have some product in my shopping basket
  43.         And I click the delete button in the basket
  44.         Then The product is removed from the shopping basket
  45.         And Shopping basket is empty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement