I know that, in test automation, we have to avoid sequential test-cases.So, the order of running the test-cases are not important.
I believe in some cases the sequential test-cases is unavoidable:
1.Consider a scenario which a user needs to take some previous steps in order to complete a final goal. For example, a user needs to be logged in, so that he can purchase.
Given User is logged in
When User adds an item into its basket
And User Complete his purchase
Then He receives an Email
So, in above scenario, each part (Given
, When
, And
, or Then
) are seperate testcases. But still the order of testcase is crucial.
2.Also, Junit team provides a method called @FixMethodOrder(MethodSorters.NAME_ASCENDING)
for such usage, but i am not sure when we are allowed to use this?
So, how do you write independent test-cases in end-2-end testing?