When I first execute a feature file , am updating the fields of it during run time. The same field's value is required to pass to other feature file. Is it possible to pass the data of one feature file to another feature file using java?
feature file 1:
scenario outline: test xxx functionality
Examples :
|user|password|
|abc|pass|
feature file2:
Scenario Outline : test yyy functionality
Examples:
|user|password|
| | |
Here, I want the data that is there in the feature file1 to be passed to feature file 2 i.e, abc and pass should be copied to Examples of feature file 2. Please do suggest.Thanks in advance!!