How do I re-run a cucumber scenario outline with different parameters?
问题 I have a cucumber scenario outline for testing a webservice that is similar to: Scenario Outline: Check the limit functionality When I GET "/api/activity-schedule-items.xml" with parameters {<filter>} Then the xml attribute "total-count" is "<count>" Scenarios: | filter | count | | 'limit' => 0 | 0 | | 'limit' => 2 | 2 | | 'limit' => 2 | 2 | | 'limit' => -1 | 15 | which works fine, however I want to re-run the same scenario outline and scenarios for each of our webservices. Basically, I would