Prev Next

Testing / Cucumber Interview Questions

What are the files required in Cucumber Framework?

Feature File has plain text descriptions of single or numerous test situations. Keywords like Then, When, Background, Scenario Outline, Feature, And, But, and so on are used in the tests. As a result, it's a file that keeps track of features and their descriptions.

Step Definition File (.java file extension) acts as a translator between the test scenario steps provided in the feature file and the automation code. Cucumber searches the step definition file and executes the relevant functions that are assigned to that step when it runs a step described in the feature file.

TestRunner (.java file extension) connects the feature file and the step definition file. It allows the user to run one or more feature files at the same time. It contains the locations of the step definition and feature files.

More Related questions...

Show more question and Answers...


Comments & Discussions