We are using Selenium WebDriver and Cucumber for our Acceptance testing. We have a collection of Features that we want to test, each with multiple scenarios, here is an example:
Scenario Outline: Unsuccessful login with W3ID credentials Given I navigate to the Bluecost Spreadsheet Upload Web url and receive a login screen When I login using invalid credentials: "<user_id>" and "<user_pwd>" Then the W3ID will reject my credentials, produce an error message and I will not proceed to BCSUW Examples: | user_id | user_pwd | | baduserid | badpass | I want to test each one of these Scenarios with each browser that we need to support: FireFox, Edge, and Chrome. How do I run those Features and Scenarios for each one of those 3 browsers?