Saturday, April 22, 2023

 

Selenium BDD cucumber Keywords in Feature file


Keywords in Feature file

Feature file is use to write the test step in Gherkin language. Below are some important keywords in feature file which are used to write test case.

•	Background
•	Feature
•	Scenario/Example
•	Scenario outline
•	Examples

Background: -

Background keywords in cucumber are used, when we have some common step in each scenario, which need to be executed every time. So instead of writing those common steps in each scenario every time, we can use Background keyword which will execute the background step before each scenario. Background: Given Gmail url launched

Feature: -

Feature keyword is use to describe the feature of the scenario. You can have multiple feature files base on the story or requirement. And you can have multiple scenarios in one feature file. Feature: This is my first feature file

Scenario/Example: -

Scenario as its name indicate, it talk about scenario of that feature. With scenario key work you can execute only one scenario with single parameter Scenario: This is scenario Given user logged with "userID"

Scenario outline: -

scenario outline is used to execute same scenario with different parameter. We can use “Examples” keyword to pass the parameter. We can pass the reference of the parameter Examples: - Examples keyword is use to send the parameter in scenario step. See below example.

Feature: This is my first feature file
Background:
Given Gmail url launched
@login
Scenario Outline: This is scenario outline with example keyword
When Enter customer name <name>
Examples:
|name|
|kabir|
|khan|
Out come :-

This is Backgroud Annotation Scenario outline :- kabir This is Backgroud Annotation Scenario outline :- khan

In above example, Background keyword will execute after each scenario. With the help of scenario outline and Examples keyword we can pass the parameter.



Related Posts:

  • Regular expression in step definition in cucumber Regular expression in step definitionBelow are some lists of special character that can be used while writing step definition.1. .(dot)-We can use any character in place of "." In below example, single step definit… Read More
  • Test Runner class in BDD Test Runner classTest runner class is the starting point in BDD from where the script get executed with the help of junit annotation. Test runner class use junit class annotation which is @Runwith(). This gets exec… Read More
  • How to pass the Parameter in BDD cucumber? How to pass the Parameter?Passing parameter by using “” (double quotes) OR <> signFrom feature file, we can pass a single parameter by using “” in the step.Example is given below.Step in Feature file Given user lo… Read More
  • How to write step definition in cucumber? How to write step definition in cucumber?Java class is used for writing step definition file. This execute each given steps in feature file. We have to write a method for each step in step definition java class with sam… Read More
  • What Is Hooks In Cucumber? What Is Hooks In Cucumber?Hooks is nothing but the script which run before or after each scenarios. There are some annotation which are used to execute script before or after each scenarioes.Below are the lists of cucum… Read More

0 comments:

Post a Comment

Translate

Popular Posts

Total Pageviews

150,640