Use And and But instead of redundant
Given/When/Then prefixes to make scenarios more readable.
Scenario: Add a product to my cart Given I am a customer Given I am on the catalog page # Noncompliant: Use 'And' instead When I add a product to my cart Then I should see the product in my cart
Scenario: Add a product to my cart Given I am a customer And I am on the catalog page When I add a product to my cart Then I should see the product in my cart