Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
4k views

How to learn/teach Gherkin for Cucumber

I'd like to enable the business analysts to be able to write all of their specs for features, scenarios and steps that is Cucumber friendly using Gherkin. I've read some of the basic info on the ...
9
votes
4answers
625 views

Should BDD scenarios include actual test data, or just describe it?

We've come to a point where we've realised that there are two options for specifying test data when defining a typical CRUD scenario: Option 1: Describe the data to use, and let the implementation ...
9
votes
1answer
1k views

How do I disable a feature in specflow (Gherkin) without deleting the feature?

I have some SpecFlow features (using the Gherkin syntax) and I would like to temporarily disable the feature to prevent its tests from running? Is there an attribute I can mark the feature with to do ...
8
votes
1answer
636 views

Parse issues when trying to use “Examples” section in Cucumber feature

No luck in googling on this error message features/manage_hand_evaluator.feature: Parse error at features/manage_hand_evaluator.feature:21. Found examples when expecting one of: comment, py_string, ...
7
votes
2answers
3k views

SpecFlow/Cucumber/Gherkin - Using tables in a scenario outline

Hopefully I can explain my issue clearly enough for others to understand, here we go, imagine I have the two following hypothetical scenarios: Scenario: Filter sweets by king size and nut content ...
6
votes
1answer
613 views

SpecFlow — Step (Given) with the same regex in different classes not executing independently

I have two classes (class A and B) both marked with [Binding]. Currently I'm using a class per feature. Classes A and B both have a step that looks like this: [Given(@"an employee (.*) (.*) is a ...
5
votes
3answers
676 views

Recommended reading to learn Gherkin

I wish to learn Gherkin so I can use it with specflow; I am looking for a document I can read on the train e.g. print out on paper. All I can find on the web is short disconnected descriptions that ...
5
votes
2answers
823 views

How to get Gherkin syntax highlighting for .feature files in Visual Studio?

There's no highlighting for Feature, Scenario, Given, When, Then, etc. keywords by default. Is there a ready made template out there to enable this?
4
votes
2answers
329 views

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 more important things we are using this for is to provide tables of sample data. Without good ...
4
votes
2answers
551 views

How to do block comments in Gherkin?

In gherkin syntax (used by Cucumber and SpecFlow, I can comment out a line by prefixing it with '#' Is there any way to block-comment multiple lines?
3
votes
2answers
65 views

Cucumber - How to remove data duplication from this Gherkin scenario?

I have the following Gherkin scenario: Scenario: User Login Given a user account exists the email "james.smith@somesite.com" and password "surprise" And I am on the login page When I fill ...
3
votes
3answers
333 views

Cucumber Features and Step Definitions

I am new to Cucumber testing. I have created two features files: events.feature partner.feature and have my step definitions in a step_definitions folder: ./step_definitions/ events.rb ...
3
votes
1answer
229 views

Where can I find out how best to use Gherkin tags?

I've been using SpecFlow for my acceptance tests. This uses Gherkin (the DSL Cucumber uses). It includes an interesting feature called "tags". I can see the practicalities of its use, but am not ...
3
votes
2answers
554 views

Watir - working with CSS elements

Hopefully someone can help me, either by telling me it cant be done or pointing me in the right direction. I am trying to use Watir Ruby written tests to check a CSS element is being applied to my ...
3
votes
1answer
442 views

Strong coupling between steps in gherkin specs

I am using specflow to specify my app, and it just saved me from doing really bad stuff, so I really like it :-) However I have a problem with with the coupling between steps: For instance since I am ...
2
votes
0answers
32 views

Call a Cucumber scenario or feature (not a step) from a step definition

I'm experimenting with a way of organizing my specifications and would like to try running a whole scenario or even feature from a step definition. I know this syntax: step 'a level 1 developer' ...
2
votes
2answers
138 views

Sharing a common set of Examples across multiple Scenario Outlines in Specflow

Is is possible to share a common set of examples across multiple scenario outlines in Specflow without duplicating the set of examples for each outline? e.g. excuse the noddy example, but here the ...
2
votes
1answer
76 views

Strange output for Cucumber using JRuby

I am using JRuby 1.6.3 with Cucumber 1.0.2. When I run my feature (jruby -S cucumber features\add_two_numbers.feature) I am getting: Feature: Add two numbers In order to add not have to use my head I ...
2
votes
1answer
1k views

Where can I find a Gherkin language spec/guide?

I'm trying to find out all available syntax/format in Gherkin, such as about multiline argument and everything else I don't know yet. After digging Google search results though, it seems that the ...
2
votes
4answers
419 views

Dealing with multiple, slight variations in SpecFlow

Hi all We are developing a web service that will be available through SOAP and REST (xml and JSon). Our specflow features are mostly the same, i.e: Scenario: There are at least 3 radio Channels ...
1
vote
4answers
92 views

Gherkin “OR” syntax to reduce repetition with BDD

Does anyone know of a way to achieve this or do they think it's a good idea. To have an OR style syntax in Gherkin for reducing repetition but maintaining human readability (hopefully). I'm thinking ...
1
vote
4answers
149 views

Pretty output of Gherkin Feature files

We're building up a specification in Gherkin and we'd like to present the Feature files to the business stakeholders. I'm trying to work out how we can export all our feature files in some sort of ...
1
vote
5answers
485 views

How can I make specflow cope nicely with dates/times?

I wish to be able to write tests like this: Background: Given a user signs up for a 30 day account Scenario: access before expiry When they login in 29 days Then they will be let in ...
1
vote
1answer
214 views

Confused about my Gherkin - navigation between web pages

I'm just starting out with BDD on a web project, using SpecFlow and WatiN to automate things through the browser, and I'm not quite sure how to write my steps. I'm trying to drive everything from the ...
1
vote
2answers
327 views

How to make Cucumber step definitions load according to feature file being executed

I would like to modify cucumber so that when a given feature is being executed (say "login.feature") I want only login_steps.rb to be loaded for the web steps. Other step files should not be loaded. ...
1
vote
1answer
1k views

Using cucumber with jruby

I'm working on my company's intranet with cucumber 0.8.5 gherkin 2.1.5 And I'm trying to switch from using ruby 1.8.7 to jruby 1.5.1 However, whenever I try to run cucumber from jruby, I get an ...
1
vote
1answer
142 views

Unable to run Cucumber using IronRuby

I'm hoping someone knows the answer to this, I'm running Cucumber from IronRuby and getting an IKVM exception. Stack trace is at the bottom. RSpec works fine. Any ideas? can't convert Array into ...
0
votes
1answer
30 views

optional argument matching in cucumber

How do I implement optional argument in cucumber. I've step definition When /^I set parameter1 to (.+) and parameter2 to (.+) and parameter3 to (.+)$/ do |arg1,arg2,arg3| which is ...
0
votes
2answers
62 views

How do we implement the 'Given' in a Gherkin Scenario (SpecFlow/BDD/Selenium)?

We are applying BDD and using SpecFlow and Selenium. Acceptance criteria are specified in Gherkin. I have a question regarding the Given clause. An example might be... Given I am on the order ...
0
votes
1answer
19 views

Scenario Outline: Placeholders with a restricted number of possible values

I am relatively new to BDD and I have a question regarding scenario outlines. When looking at samples over the internet I have the feeling that the placeholders can take any values. The number of ...
0
votes
2answers
79 views

How should I name my steps in a scenario outline

I've got a handful of specflow tests that look something like this: Scenario: Person is new and needs an email Given a person And the person does not exist in the repository When I run the new user ...
0
votes
1answer
145 views

Using SpecFlow for End-to-End Regression Testing

We are employing BDD and using SpecFlow to drive our development (ATDD). Our QA team would like to define their own 'end-to-end regression tests (in Gherkin/SpecFlow) and re-use the Steps we have ...
0
votes
0answers
134 views

Gherkin in Behat and input validations scenarios

I am using Gherkin in Behat and I face an input problem in the validation scenario. Here is the example of the scenario I wrote, but Behat doesn't understand the difference between variable definition ...
0
votes
1answer
466 views

Cucumber rake cucumber:ok - errors

I am getting errors when I run: rake cucumber:ok Can you please tell me how to fix the following error? Gem versions I am using: rails Rails 3.0.8.rc4 rspec 2.6.3 cucumber 0.10.3 Errors when I ...
0
votes
2answers
47 views

how to check nothing has changed in cucumber?

The business scenario I'm trying to test with cucumber/gherkin (specflow, actually) is that given a set of inputs on a web form, I make a request, and need to ensure that (under certain conditions), ...
0
votes
2answers
400 views

Ruby Cucumber multi-line quotes with interpolation?

I'm using Cucumber to send in JSON to some API actions. In one instance, I need to know the ID of an object that was built prior to the API call and pass that ID in. I want to do this: Scenario: ...