Top "Cucumber" questions

Cucumber is a Behavior Driven Development (BDD) tool that executes functional descriptions written in plain text (structured in the simple Gherkin language) as automated tests.

Are there any non-developer tools to edit gherkin files?

Gherkin syntax files are just plain text so any editor such as notepad can be used. However, one of the …

cucumber bdd specflow gherkin
BDD and TDD for node.js?

What is used for BDD and TDD with node.js? I'm used to use Cucumber + RSpec. What's a good combo …

node.js rspec tdd cucumber bdd
Cucumber Capybara scroll to bottom of page

I'd like to use my Cucumber/Capybara setup to test endless scroll by driving a browser and scrolling to the …

cucumber capybara
@Before doesn't execute in java Cucumber Step

I've got a Cucumber Step class that i'm attempting to initialise a page model for all scenarios. So I added …

java cucumber bdd
Find or create record through factory_girl association

I have a User model that belongs to a Group. Group must have unique name attribute. User factory and group …

ruby ruby-on-rails-3 cucumber factory-bot
How to assert on number of html table rows in ruby using capybara + cucumber

I am trying to get to grips with BDD web development in Ruby using cucumber + capybara and I am stuck …

ruby cucumber capybara
Step does not have a matching glue code error in cucumber eclipse

I am trying to run a feature file which mentioned follows. Feature: Prove the concept of my script Scenario: My …

java eclipse cucumber cucumber-jvm cucumber-junit
Cucumber `--tags` options from command line?

What i would like to do is to pass cucumber options from command line to execute scenarios with tag name @…

cucumber cucumber-jvm cucumber-junit cucumber-java
Cucumber; Selenium WebDriver - how to use Google Chrome as the testing browser instead of Firefox

For a Cucumber scenario on my Rails 3.1 app, I used the @javascript tag, so Selenium is activated. I get the …

ruby-on-rails-3 testing browser selenium cucumber
Optional parameter in cucumber

I have a step definition in which I'd like to have an optional parameter. I believe an example of two …

cucumber