Calling a scenario in another feature file by scenario name
问题 Hi I have the following feature file: checkout.feature Scenario: checkout items in basket * call read('classpath:login.feature@[call by scenario name]') Given path '/checkout' And request {"items":{"biscuits": 1,"apples": 2}} When method post Then status 200 Before checking out the items in the basket, I would like to call the login.feature by scenario name (log into app with credentials), without the use of a tag. Could you please tell me the syntax in order to do so? login.feature Scenario: