I need to get the list of all the scenarios and tags that are going to be run when I execute a certain condition. For example when I run the command
mvn clean test -Dcucumber.filter.tags='@Regression and @login
A list of test cases that come from different features is executed, but to obtain that list I must wait for the execution of the suite to finish completely.
I would like to know if there is any way to get that list before the execution starts or at least at the beginning. Currently I do it manually but it takes a long time because there are many test cases
If you have any information to do it with cucumber or maven I would be very grateful.