Apickli framework - cucumber example tags implementation

Hi, I'm using apickli and grunt tasks to run my feature files using grunt cucumberjs

grunt cucumberjs --cucumbertags=@favourite

Above command runs all the scenarios with @favourite tag. I have an issue where i want scenarios to run on different env with diff data that belongs to environment.

@Book
Scenario Outline: Search by Author
    When I search for "Leo Tolstoy"
    Then I should see "<number_of_books>" books

@qa_env
Examples:
| number_of_books |
| 5               |

@dev_env
Examples:
| number_of_books |
| 3               |

How can I run scenario @Book with @qa_env data and @Book with @dev_env data ?

0 0 521
0 REPLIES 0