in Technology by

What is a Feature file in cucumber?

Please log in or register to answer this question.

1 Answer

0 votes
by

Features file contain a high-level description of the Test Scenario in simple language. It is known as Gherkin which is a plain English text language. Feature File consists of the following components like: Feature: It describes the current test script which has to be executed. Scenario: It is steps and expected outcome for a specific test case. Scenario outline: Scenario can be executed for multiple sets of data using scenario outline. Given: It specifies the context of the text to be executed. When: specifies the test action which has to perform. Then: Expected outcome of the test can be represented by “Then”

Related questions

...