Cypress.io
When testing is easy, developers build better things faster and with confidence.
@amirrustam
Ask Questions at Sli.do
event code #cy-faire
Ask Questions at Sli.do
event code #cy-faire
Feature: Orders
Background:
Given a brand exists
And the brand has 5 products
And a retailer exists
And I am logged in as a retailer
Scenario: Return Order
Given I order and return items
Then Test order page reflects returned items
Scenario: Report Issue
Given I create a new order
And I report an issue on the order
Then I view the order and see the reported issue
Feature: Orders
Background:
Given a brand exists
And the brand has 5 products
And a retailer exists
And I am logged in as a retailer
@Ignore
Scenario: Return Order
Given I order and return items
Then Test order page reflects returned items
@Flaky
Scenario: Report Issue
Given I create a new order
And I report an issue on the order
Then I view the order and see the reported issue
Scenario Outline: Sign up with specific countries
Given I am located in "<country>"
When I visit the brand page
Then the correct products should display with the right price: "<price>"
When I click on the product tile button
And I sign up with
| country | storeZipCode | language |
| <country> | <postal_code> | <language> |
Then I should be on the product details page
Examples:
| country | postal_code | language | price |
| USA | 90210 | ENG | $100 |
| DEU | 51149 | DEU | 100 β¬ |
| FRA | 75001 | FRA | 100 β¬ |
| DEU | 51149 | ENG | β¬100 |
| FRA | 75001 | ENG | β¬100 |
| GBR | SW1A 2AA | ENG | Β£100 |
Q & A time
@amirrustam
By Cypress.io
When testing is easy, developers build better things faster and with confidence.