note method

BddGiven note(
  1. String text
)

Often used informally in comments within a Gherkin document to provide additional information, clarifications, or explanations about the scenario or steps. Comments in Gherkin are usually marked with a hashtag (#) and are ignored when the tests are executed. A "Note" can be useful for giving context or explaining the rationale behind a certain test scenario, making it easier for others to understand the purpose and scope of the test.

Implementation

BddGiven note(String text) => BddGiven._(bdd, text, _Variation.note);