You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
Feature: billing/indexAs a customerI should be able to access the billing sectionScenario: Billing dashboard accessGiven I am authenticated as "user_default" using password "test"And I am on "/billing"Then the response status code should be 200And I should see the following table portion:
| Réf | Payé || FR_SC_001 | oui |
I got the following error:
$ behat features/billing/index.feature
Feature: billing/index
As a customer
I should be able to access the billing section
Scenario: Billing dashboard access # features/billing/index.feature:5
Given I am authenticated as "user_default" using password "test"# FeatureAppContext::iAmAuthenticatedAs()
And I am on "/billing"# FeatureAppContext::visit()
Then the response status code should be 200 # FeatureAppContext::assertResponseStatus()
And I should see the following table portion: # Knp\FriendlyContexts\Context\TableContext::iShouldSeeTheFollowingTablePortion()| Réf | Payé || FR_SC_001 | oui |
The given array
| Réf | Payé || FR_VP_5 | oui || FR_VU_0 | non || FR_VP_4 | oui || FR_VP_1 | oui || FR_SC_001 | oui |
does not contain the following rows
| Réf | Payé || FR_SC_001 | oui |
The given array
| Réf | Produit | Date | Confirmé |
does not contain the following rows
| Réf | Payé || FR_SC_001 | oui |
(Exception)
--- Failed scenarios:
features/billing/index.feature:5
1 scenario (1 failed)
4 steps (3 passed, 1 failed)
0m4.36s (99.74Mb)
But according to the first given array, the row should be found. Am I right?
Note: The array also have a "Date" column that I don't want to test on the portion. Maybe the issue is because of this.
EDIT: I also tried with the Date column, this change nothing:
The given array
| Réf | Date | Payé || FR_VP_5 | 3 mars 2016 | oui || FR_VU_0 | 15 nov. 2015 | non || FR_VP_4 | 25 oct. 2014 | oui || FR_VP_1 | 26 sept. 2014 | oui || FR_SC_001 | 17 août 2014 | oui |
does not contain the following rows
| Réf | Date | Payé || FR_SC_001 | 17 août 2014 | oui |
The text was updated successfully, but these errors were encountered:
With the following feature:
I got the following error:
But according to the first given array, the row should be found. Am I right?
Note: The array also have a "Date" column that I don't want to test on the portion. Maybe the issue is because of this.
EDIT: I also tried with the Date column, this change nothing:
The text was updated successfully, but these errors were encountered: