- Behave - Discussion
- Behave - Useful Resources
- Behave - Quick Guide
- Behave - Debugging
- Behave - Hooks
- Behave - Reports
- Behave - Retry Mechanism
- Behave - Exclude Tests
- Behave - Runner Script
- Behave - Step Parameters
- Behave - Step Functions
- Behave - Multi-Methods
- Behave - Optional Part
- Behave - Regular Expressions
- Behave - Step Matchers
- Behave - Enumeration
- Behave - Tags
- Behave - Data Types
- Behave - Background
- Behave - Steps in a Step
- Behave - Setup Table
- Behave - Multiline Text
- Behave - Scenario Outlines
- Behave - Step Parameters
- Behave - Supported Languages
- Behave - First Steps
- Behave - Step Implementations
- Behave - Feature Files
- Behave - Gherkin Keywords
- Behave - Feature Testing Setup
- Behave - Configuration Files
- Behave - Command Line
- Behave - Installation
- Behave - Introduction
- Behave - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Behave - Feature Files
Behave works with three different file types, as explained earper. These files are as follows −
Feature files which are created by the Business analyst or any project stakeholder and contains behaviour related use cases.
Step Implementation file for the scenarios defined in the feature file.
Environment Setup files where the pre/post conditions are to be executed prior and post steps, features, scenarios, and so on.
A Feature file should be within a folder called as the features. Also, there should be a sub-directory steps within the features directory.
The following screen will appear on your computer −
Launching Feature file
We can launch the feature file with various command pne arguments, as explained below −
If no information is available, all the feature files within the features directory shall be loaded for the execution in Behave.
If the path of the features directory is provided, then it is mandatory to have at least one feature file (with .feature extension) and a sub-directory named steps within the features directory.
Also, if the environment.py is present, it should be within the directory that has the steps directory and not within the steps directory.
If the path to a feature file is provided, then it instructs Behave to search for it. To get the corresponding steps directory for that feature file, the parent directory is searched.
If not found in the current parent directory, then it searches its parents. This shall continue until it reaches the file system root. Also, if the environment.py is present it should be within the directory that has the steps directory and not within the steps directory.
Structure of a Feature File
A Feature consists of Scenarios. They may/may not contain a description, background, and a group of tags.
A structure of a feature file is as follows −
Feature File
The format of a feature file is as follows −
Feature − Verify book name added in Library Scenario − Verify Book name Given Book details Then Verify book name
Corresponding Step Implementation File.
The corresponding step implementation file looks pke the one mentioned below −
from behave import * @given( Book details ) def impl_bk(context): print( Book details entered ) @then( Verify book name ) def impl_bk(context): print( Verify book name )
Output
The output obtained after running the feature file is as follows −
The output shows the Feature and Scenario names, along with the test results and duration of the test execution.
Advertisements