-1

We have a situation where we have several products (frontend, app, api) and each of them is tested already using cucumber. Now we would like to test all the product together re-using the test already written, so basically we want to do an action on frontend followed by one in app

When I create a user X,Y in frontend
Then I login with the user X,Y in the app

in the respective subproject the steps are already defined and working, but we want another level of abstraction, is this possible we cucumber or any other test framework or we have to write our own implementation?

fege
  • 547
  • 3
  • 7
  • 19

1 Answers1

0
Scenario: Register in front end, login via app
  Given I registered in the front end
  When I login via the app
  Then I should be logged into the app
diabolist
  • 3,990
  • 1
  • 11
  • 15