Saturday, February 1, 2020



Cucumber is not originally written in java it is written in Ruby.

Then he started binding with different languages.

He created Binding with java with the help of Cucumber-Java Dependency to run cucumber in java
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
Cucumber Needs Helper Runner which count trigger Cucumber in this case it is JUnit


<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>

Another Dependency Called Cucumber-picocontainer. Its a Separate Dependency. Can be use for Dependency Injection.

Go to Cucumber site & check updates of cucumber on official site.
We can add Cucumber by using Market Place also.

Then



No comments:

Post a Comment