ContributionsMost RecentMost LikesSolutionsCan we skip example data sets Hi, If total 5 example data sets were there. If first data set fails it should go to second data set. If second data set passes then it should exit from scenario is it possible? Re: Can we skip example data sets Hi Jack, Thank you very much for your quick help. But even I returned shouldContinue = false it is not stopping further set. Below is my code boolean shouldContinue = true; // A flag to control scenario continuation @Given("I want to write a step with {string}") public void method1(String arg1) { System.out.println(arg1 + "is printed"); } @When("I check for the {string} in step") public void method2(String arg2) { System.out.println(arg2 + "is printed"); shouldContinue = false; } @Then("I verify the {string} in step") public void method3(String arg3) { System.out.println(arg3 + "is printed"); } Can we skip example data sets Hi All, I need your help ASAP on this. I am having 5 sets of test data using examples keyword. Here my case is if scenario is passed with one of the data set it should exit and go to next scenario. It shouldn't execute other data sets. Please guide me if this is possible in cucumber. Re: How can we execute maintain scenario execution order in a feature file Can any one help me on this Using cucumber xray can we create cucumber tests in jtmf using any Xray API. Hi Team, We have JTMF in our company and currently we are doing bulk upload of all cucumber type test cases in to JTMF using Import CSV. We wanted to do that action in another way like we have feature file and when we execute feature file automatically the scenarios should be created as cucumber type test cases in JTMF. Please let me know any such thing is available. Thanks Prasanth How can we execute maintain scenario execution order in a feature file Hi Team, I have one feature file consists of 10 scenarios. If i want to maintain execution order in between scenarios like priority order in Testng. Is there any option in cucumber. To clearly tell scenario1-scenario10 My order should be like scenario3,scenario6,scenario1 etc..