Why does the Cucumber report show only one feature when there should be two?
I have a Maven project with Java using Cucumber to generate the report. It includes Register and Login features. The project executes well, but when reviewing the Cucumber report, only the Login feature appears, and the Register feature does not.
I have checked everything and changed the configurations, but the issue persists. Both features should be shown.
How to use cucumber-jvm to create live data?
I drove the development of my system through cucumber tests very successfully. Now the system is ready to be tested through a UI, and I would like to re-use the test data from my scenarios for this. Is it possible to trigger executing the appropriate @Whens of my step definitions when starting up my system?
What is the correct way to transform an entire data table?
The @DataTableType
annotation can mark a method which is able to take a Map<String, String>
row from a data table and transform it to a stronger type. The example from here is: