Wording should remain at business level. This rules check feature and scenario names as well as step sentences.

Noncompliant Code Example

Scenario: Add a product to my cart
  Given I am on the catalog page
  When I click on a product to add it to my cart   # Noncompliant: 'click' should not be used
  Then I should see the product in my cart

Compliant Solution

Scenario: Add a product to my cart
  Given I am on the catalog page
  When I add a product to my cart
  Then I should see the product in my cart

List of Forbidden Words

[[allForbiddenWords]]