300+[LATEST] Ruby Cucumber Interview Questions and Answers

Q1. Cucumber Is Written In Which Programming Language?

Cucumber is written in the Ruby programming language. It was originally used exclusively for Ruby testing as a complement to the RSpec BDD framework. Cucumber now supports a variety of different programming languages through various implementations.

Q2. Gherkins Files Have Which File Extension?

All Gherkin files have the .feature file extension. They contain a single Feature definition for the system under test and are an executable test script.

Q3. What Are Steps In Cucumber?

Steps in Gherkin’s .feature files can be considered a method invocation. Before Cucumber can execute a step it must be told, via a step definition, how that step should be performed.

Definitions are written in Ruby and conventionally filed under features/step_definitions/*_steps.rb. Definitions start with the same keywords as their invocation (including Gherkin’s full language support). Each definition takes two arguments.

Either a regular expression or string with $variables

A block containing ruby code to execute

Q4. Define How To Generate Cucumber Execution Reports ?

We can use the following command to generate html reports.

–format html –out report.html –format pretty

Q5. Define What Is Cucumber And Define What Are The Advantages Of Cucumber?

To run functional tests written in a plain text Cucumber tool is used. It is written in a Ruby programming language.

Advantages of Cucumber

  • You can inolve business stakeholders who can not code
  • End user experience is priority
  • High code reuse

Q6. Define What Is The Difference Between Class And Module?

P141, P142

Class can do: inheritance, having instance, while module CAN NOT. Can be required.

Module can do: make namespace to avoid name clash, can be included.

#instantiate from class within module

Module A

Class B

End

b= A::B.new

Q7. What Are Hooks In Cucumber?

Hooks are Cucumber’s way of allowing for setup to be performed prior to tests being run and teardown to be run afterward. They are defined as executable Ruby blocks, similar to JUnit methods marked with @Before, @After annotations. Conventionally they are placed under support/, and are applied globally. Three basic types of hooks exist.

Before – Runs before a scenario

After – Runs after a scenario

Around – Assumes control and runs around a scenario

Additional hooks include

  • BeforeStep
  • AfterStep
  • AfterConfiguration – Runs after Cucumber configuration and is passed an instance of the configuration

Q8. What Are Cucumber Tags? Why We Use The Tags?

cucumber tags used to filter the scenarios. We can tag the scenarios and we can execute the scenarios based on tags,

We can add tags to scenarios with @

We can use following command to execute a cucumber tagged scenarios

cucumber features -t @

Q9. Cucumber Execution Starts From Where?

Cucumber execution will starts from support. In support first it will load the env.rb file then it will load hooks.rb and then it will start execute feature file scenario steps.

Q10. Define What Is Profile In Cucumber ?

We can create Cucumber profiles to run specific features and step definitions

We can use following command to execute a cucumber profile

cucumber features -p

Ex: cucumber features -p regression

Q11. How To Run A Particular Scenario From A Feature File?

We can run particular scenario from a feature file by giving the scenario line number

Ex: cucumber features/test.feature:21

Q12. What Is Support, Env.rb And Hooks.rb?

  • Support is a foder where we can setup cucumber related support.
  • rb file will be used to load the required libraries for cucumber scenario execution
  • rb we will add hooks like before, after, beforeStep and afterStep hooks

Q13. What Is A Feature In Cucumber?

A feature is a Use Case that describes a specific function of the software being tested. There are three parts to a Feature [18]

  1. The Feature: keyword
  2. The Feature name (on the same line as the keyword)
  3. An optional description on the following lines

Q14. Define What Does A Features/ Support File Contains?

Features/ support file contains supporting ruby code. Files in support load before those in step_definitions, which can be useful for environment configuration.

Q15. What Is Gherkin Language?

Gherkin is the language that Cucumber uses to define test cases. It is designed to be non-technical and human readable, and collectively describes use cases relating to a software system.

The purpose behind Gherkin’s syntax is to promote Behavior Driven Development practices across an entire development team, including business analysts and managers.

Q16. Define Cucumber Report?

Cucumber generates its own html format. Define However better reporting can be done using Jenkins or bamboo tool. Details of reporting are covered in next topic of cucumber.

Q17. Define What Is Scenario Outline ?

Scenario outline is used to execute the same scenario with different test data.

we will add test data in examples section

Q18. How Does Cucumber Works With Browser Automation?

Cucumber does not provide built in browser automation. However, it does work well with existing gems such as Selenium and WATiR-WebDriver.[24] It does support running tests with transactions through leveraging other gems such as ActiveRecord.

Q19. Define What Is Error Handling And Define How Do You Do Error Handling?

P584: Raise, Rescue

Q20. Define What Are The Keywords That We Use In Cucumber Scenario Steps ?

We use Given,when,Then,And and But keywords in cucumber scenario steps .

Q21. Explain Define What Is Scenario Outline In Feature File?

Scenario Outline: Same scenario can be executed for multiple sets of data using scenario outline. The data is provided by a tabular structure separated by (I I).

Q22. What Is A Scenario In Cucumber?

Each Feature is made of a collection of scenarios. A single scenario is a flow of events through the Feature being described and maps 1:1 with an executable test case for the system.[18] Keeping with the example ATM withdrawal feature, a scenario might describe how a user requests money and what happens to their account.

Q23. What Is Cucumber Tool?

Cucumber is a software tool used by computer programmers for testing other software. It runs automated acceptance tests written in a behavior-driven development style. Central to the Cucumber BDD approach is its plain language parser called Gherkin.

Q24. Explain Define What Is Test Harness?

A test harness for cucumber and rspec allows for separating responsibility between setting up the context and interacting with the browser and cleaning up the step definition files

Q25. What Are Tags In Cucumber?

Gherkin’s Feature structure forces organization. However, in cases where this default organization is inconvenient or insufficient, Gherkin provides Tags. Tags are @-prefixed strings and can be placed before.

  • Feature
  • Scenario
  • Scenario Outline

Examples: An element can have multiple tags and inherits from parent elements.

Q26. Define What Is Cucumber Dry Run ?

Cucumber dry run is used to compile cucumber feature files and step Definitions. Of there is any compilations errors it will Define How when we use dry run 

Ex: Cucumber features –dry-run

Q27. Define What Is Step Definition In Cucumber?

A step definition is the actual code implementation of the feature mentioned in feature file.

Q28. Cucumber Tests Are Divided Into How Many Parts?

Cucumber tests are divided into individual Features. These Features are subdivided into Scenarios, which are sequences of Steps.

Q29. Define What Are Before, After, Beforestep And Afterstep Hooks?

  • Before:execute before the feature file execution
  • After:executes after the feature file execution
  • BeforeStep:executes before the each step execution
  • AfterStep:executes after the each step execution

Q30. Explain When To Use Rspec And When To Use Cucumber?

  • Rspec is used for Unit Testing
  • Cucumber is used behaviour driven development.
  • Cucumber can be used for System and Integration Tests

Q31. Cucumber Execution Starts From Where ?

Cucumber execution will starts from support. In support first it will load the env.rb file then it will load hooks.rb and then it will start execute feature file scenario steps.

Q32. Define What Is The Language Used For Expressing Scenario In Feature File ?

Gherkin language is used to express scenario in feature files and ruby files containing unobtrusive automation for the steps in scenarios

Q33. Explain Define What Is Regular Expressions?

A regular expression is a pattern describing a certain amount of text. The most basic regular expression consists of a single literal character.

Q34. Define What Are The Benefits?

  • It is helpful to involve business stakeholders who can’t easily read code
  • Cucumber focuses on end-user experience
  • Style of writing tests allow for easier reuse of code in the tests
  • Quick and easy set up and execution
  • Efficient tool for testing

Q35. Define What Are The Difference Between Jbehave And Cucumber?

Although Cucumber and Jbehave are meant for the same purpose, acceptance tests are completely different frameworks

  • Jbehave is Java based and Cucumber is Ruby based
  • Jbehave are based on stories while Cucumber is based on features

Q36. What Is Profile In Cucumber?

We can create Cucumber profiles to run specific features and step definitions

We can use following command to execute a cucumber profile

cucumber features -p

Ex: cucumber features -p regression

Q37. Define What Software Do You Need To Run A Cucumber Web Test ?

  • Ruby and its Development Kit
  • Cucumber
  • IDE like ActiveState
  • Watir ( To simulate browser)
  • Ansicon and rspec (if required)

Q38. What Are Formatter Plugins In Cucumber?

Cucumber uses Formatter Plugins to provide output. Several common formats are provided by default, including

  • JSON
  • HTML
  • JUnit

Q39. Define What Is Bdd Framework.define What Is The Benefit Of Bdd In Selenium ?

BDD is becoming widely accepted practice in agile software development, and Cucumber-JVM is a mainstream tool used to implement this practice in Java. Cucumber-JVM is based on Cucumber framework, widely used in Ruby on Rails world as well as in Java and .Net.

Cucumber-JVM allows developers, QA, and non-technical or business participants to write features and scenarios in a plain text file using Gherkin language with minimal restrictions about grammar in a typical Given, When, and Then structure.

The feature file is then supported by a step definition file, which implements automated steps to execute the scenarios written in a feature file. Apart from testing APIs with Cucumber-JVM, we can also test UI level tests by combining Selenium WebDriver.

Q40. Give An Example Of Behaviour Driven Test In Plain Text?

Feature:Visit XYZ page in abc.com

Scenario:Visit abc.com

Given:I am on abc.com

When:I click on XYZ page

Then:I should see ABC page

Scroll to Top