My project structure is something like this:
/src/java/test
TestRunner -> main.java
Component1 --> Admin.feature
Component2 --> Publisher.feature
Component3 --> Store.feature
I want to pass some value from Admin.feature
file to Publisher.feature
file.
Is that possible?
I know we can pass values from one feature file to another under the same folder, but I'm unsure if the value can be used throughout my folder structure.