Use And and But instead of redundant Given/When/Then prefixes to make scenarios more readable.

Noncompliant Code Example

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

Compliant Solution

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