CUCUMBER-JUnit

BDD framework with Rest -assured + cucumber using scala and sbt

Reading Time: 4 minutes Hi all , here we are going to develop a BDD framework for automating our Rest API’s with the help of rest assured and cucumber using scala and sbt build tool. REST assured DSL already provides a BDD style writing of tests in the Given , When and Then format , but still if you want to know what scenarios are covered , you still Continue Reading

Cucumber Tags and Hooks

Reading Time: 3 minutes In continuation of my cucumber series, this blog will help us clear the concept of using cucumber tags and hooks. We will look at some practical approach and how a lot of time can be saved by using different tags and hooks. What are cucumber tags and hooks? Now, tagging is nothing but a simple annotation. So, you can provide your annotation using a conventional Continue Reading

Complete Eclipse Setup for Cucumber

Reading Time: 2 minutes Previously, in my Cucumber with the Selenium series, we have seen different types of files and keywords necessary for being the part of cucumber framework. You can find the link here. Moving forward, in this blog we will see Complete Eclipse Setup for Cucumber and convert the same thing into code. Step wise guide to setup cucumber framework Step 1 :Let’s start creating a maven Continue Reading

Tutorial 2:Introduction on how to write a First Test Script in CUCUMBER

Reading Time: 3 minutes Hello Everyone, In this series of blog it’s time to look into how to write test cases in cucumber and execution of these test cases.Follow these Steps for the Same. You can read the previous post related to installation of cucumber: here Step 1: We will use the test package to define the location of features (Resources folder), step definitions (Java folder) and other files. Then Continue Reading

Tutorial 1:Cucumber with java maven project

Reading Time: 2 minutes Hi Folks. From this Blog we will start a series of cucumber BDD tool .Before go through the cucumber We should know how to integrate cucumber with java maven project. To run Cucumber test with Java, following are the steps. Step 1. Install Eclipse IDE -Make sure java should already be installed on your machine. Step 2. Then Create the New Project in Eclipse IDE by following steps: Continue Reading