Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cucumber with TestNG

We have a very extensive framework in TestNG with Selenium WebDriver and I want to be able to continue using it, but use Cucumber BDD with it.I am aware that Cucumber works with JUnit, but not sure if it works with TestNG.

Can anyone let me know if this is going to be available anytime soon ? If not, are there any workarounds so that I can use Cucumber with TestNG?

Also, are there any other BDDs that are available in the market which can be used with TestNG ?

like image 678
Sridevi Yedidha Avatar asked Mar 24 '13 04:03

Sridevi Yedidha


1 Answers

Dependency in maven's pom:

    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-testng</artifactId>
        <version>1.1.5</version>
        <scope>test</scope>
    </dependency>

Test running the features:

import cucumber.api.testng.AbstractTestNGCucumberTests;

public class CucumberTets extends AbstractTestNGCucumberTests {

}
like image 148
Mariusz Jamro Avatar answered Oct 23 '22 01:10

Mariusz Jamro