Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
stylenone

...

Staging PLK ES

Comments

Status

image-20241125-164837.png

image-20241125-164936.png

image-20241125-172455.png

Passed

Scenario 2: As a user I want to see the payment methods that are activated for a restaurant on WL

Code Block
breakoutModewide
Feature: Allow Payment methods by DOP
  Background: DOP Restaurants
    Given I have accessed DOP Restaurants Page
  Scenario: As an user I want to see the payment methods that are activated for a restaurant on WL
    Given I have the follow activated payment methods for a restaurant
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |
    And I go to the WL and select the restaurant that has the activated payment methods
    When I go to the payment screen
    Then I should see the activated payment methods available on the dropdown
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |

DEV PLK ES

Comments

Status

image-20241125-142442.png

image-20241125-143651.png

image-20241125-142817.png

Passed

Scenario 3: As a user I do NOT want to see the payment methods that are inactivated for a restaurant on WL

Code Block
breakoutModewide
Feature: Allow Payment methods by DOP
  Background: DOP Restaurants
    Given I have accessed DOP Restaurants Page
  Scenario: As an user I do NOT want to see the payment methods that are inactivated for a restaurant on WL
    Given I have the follow inactivated payment methods for a restaurant
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |
    And I go to the WL and select the restaurant that has the inactivated payment methods
    When I go to the payment screen
    Then I should NOT see the inactivated payment methods available on the dropdown
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |

DEV PLK ES

Comments

Status

image-20241125-143054.png

image-20241125-143700.png

image-20241125-143128.png

We desactived only Cash, Ticket Restaurant and Sodexo vouchers

Passed

Scenario 4: As a user I want to see the payment methods that are inactivated for a restaurant when the order is via take out WL

Code Block
breakoutModewide
Feature: Allow Payment methods by DOP
  Background: DOP Restaurants
    Given I have accessed DOP Restaurants Page
  Scenario: As a user I want to see the payment methods that are inactivated for a restaurant when the order is via take out WL
    Given I have the follow inactivated payment methods for a restaurant
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |
    And I go to the WL and select the restaurant via take out that has the inactivated payment methods
    When I go to the payment screen
    Then I should see the inactivated payment methods available on the dropdown
      |activate-payment-methods|
      |Cash                    |
      |Ticket Restaurant       |
      |Sodexo                  |

DEV PLK ES

Comments

Status

image-20241125-143054.png

image-20241125-143352.png

image-20241125-143434.png

We desactived only Cash, Ticket Restaurant and Sodexo vouchers, but in take orders show normaly all payments

Passed