I want get current feature file name at runtime using Java. I have scenario info in hook but unable to get feature file
@Before
public void before(final Scenario scenario) {
this.scenario = scenario;
}
Do we have any similar thing to get current Feature file name ?? i am using cucumber version 1.2.4
UPDATE:
This is my implementation for feature names starting with an uppercase letter like in the example:
ORIGINAL:
I don't know if this is useful for you, but I would suggest to use
scenario.getId()This will give you the feature file name and scenario name, for example:
with scenario.getId() you would get the following:
Hope this helps you!