ContributionsMost RecentMost LikesSolutionsRe: No reports Your plugin list is wrong. You have a single string with escaped quotes. Instead, try this: plugin = {"pretty","html:target/test-output", "json:target/cucumber.json", "junit:target/cucumber.xml"} Re: Porting to Dart Language Hi Luciano, Wow well done! I suggest you submit a pull request to the `cucumber/common` repository so we can discuss in more detail in the pull request. Thanks for doing this! Re: using tag in FindBy annotation While Cucumber works well with Selenium WebDriver, we don't offer technical support for Selenium WebDriver. Please ask in their forums. Re: Run Scenario when ends another other one (JAVA) It's not possible to have one scenario depend on another Scenario in Cucumber. This is a deliberate design decision since coupling scenarios relies on side-effects, and this is known to produce non-deterministic behaviour for scenarios. (They can no longer be run in isolation). Re: Step level screenshot in cucumber Thanks for sharing your code. Your code doesn't seem to use Cucumber, so I'm a bit puzzled you're asking in this forum. We only offer support for Cucumber, not other testing tools. Re: Dynamic values in feature file That's not supported. If you want dynamic data you have to handle this in your step definitions. Re: Step level screenshot in cucumber Hi. Please share some relevant code so we can see what you're doing. Re: this.repository is null error in my cucumber test for CURD operations API Please provide more information such as: * What Cucumber version are you using? * What programming language are you using? These screenshots don't provide any information that will help us help you. At the very least, explain what you're doing in your step definitions, and why you expect `this.repository` to have a value. Re: Unable to run multiple tags The tag expression `@smoke and @regression` will select scenarios that have both of these tags. Since you don't have any scenarios that have both of the tags, the selection is empty, and nothing is run. I think what you want is `@smoke or @regression`. Hope this helps, Aslak Re: Tags we are passing multiple tags like @Smoke and @Regression in CucumberOption showing 0 scenarios Try @Smoke or @Regression The docs are here: https://cucumber.io/docs/cucumber/api/#tag-expressions