Cucumber is a Behavior Driven Development (BDD) tool.

learn more… | top users | synonyms

0
votes
0answers
10 views

Cucumber feature files are not executed using Maven

Hi I have setUp a Java project using Maven in eclipse. I am facing an issue whenever I am trying to run the script. Its is executed by the not opening the desired website which I am parsing from the ...
0
votes
0answers
8 views

Specflow TestProfile file

I want to use specflow and specrun to parallelize my test execution. I understand I need a profile file with the Execution element set as following: <Execution testThreadCount="2" />. However, ...
0
votes
0answers
8 views

Test dropzone js upload with rails, cucumber, capybara?

I have a rails project using cucumber and capybara for tests. I have a file upload page using dropzone js. My uploads work great using the dialog box or drag and drop. Testing is another matter. I ...
0
votes
0answers
26 views

Selenium Browser keeps dying on me

I see other people have been having this issue, by mine seems a bit different than anyone elses as it only is occuring when I run a full suite (fails on like test 20). if I run a single test or only ...
1
vote
0answers
15 views

Include World concept of cucumber in site-prism

How to include World concept of cucumber in site-prism? So that I can include test_site class in World and then no need to instantiate test_site class every time in step functions. Is it possible? ...
0
votes
1answer
13 views

Cucumber Capybara - Find an element based on attribute's content

My requirement is to check if some particular content (i.e. Id=4540484 in the below example) exists in the onclick attribute on an anchor tag on a page. Can someone help me out please? <a ...
0
votes
0answers
17 views

undefined is not a function zombie.js

I'm new to both zombie and cucumber-js, so I apologize if I leave out anything important. If you need something I missed, please just ask. I'm trying to get cucumber-js/zombie up and running on my XP ...
1
vote
0answers
7 views

Run Cucumber Features in Parallel using parallel_tests gem

I am using Selenium locally to run two .feature files. Both pass locally. Neither of the tests interact with a db (nor will future tests). I would like to use the parallel_tests gem to spin up two ...
0
votes
1answer
19 views

Is it possible to take a screenshot of the whole page with Selenium/Capybara?

PhantomJS has the option of taking a screenshot of the whole page (not just the current viewport). Is there any way to do so using Selenium? I am running the Cucumber/Capybara tests headlessly, using ...
0
votes
0answers
26 views

Cucumber script is not getting executed

Hi I am new to cucumber. I have setUp the project using Maven I am facing an issue that When I am trying to execute my RubCukeCase.java file, Its being executed but Its not performing the actions ...
0
votes
1answer
20 views

why is page object name erroring in ruby?

So here is my delema... I'm trying to get page object up and running, something I've done a thousand times before, but i'm getting a name error now. Is it just too early in the morning or am I ...
-3
votes
0answers
15 views

Cucumber Integration with other automation tools [closed]

I would like to know about cucumber that which of the tools are capable to be INtegrated with Cucumber just like Selenium is one of them which is integrated with Cucumber, I would like to know the ...
2
votes
1answer
19 views

constant Logger::Format not defined (NameError) with activerecord

When I have require 'active_record' in env.rb then I was getting errors constant Logger::Format not defined (NameError) ...
0
votes
1answer
44 views

Selenium WebDriverError on Rails 3.2 with cucumber

I have a Rails 3.2 app. I am trying to set up cucumber tests to run using Google chrome. I have added config for the same: Capybara.register_driver :selenium do |app| ...
1
vote
2answers
42 views

vim function external call

Currently my vimrc has the following key mappings: map <leader>m :w\|!clear && rspec --drb %<cr> map <leader>k :w\|!clear && rspec --drb ...
0
votes
1answer
31 views

Cucumber transform method doesn't trigger

I try to use Transform method to convert string to symbol in my step definition. But it doesn't trigger. Here is my step: Given(/^I log in to "(.*?)" project$/) do |project| #here I expect ...
0
votes
1answer
18 views

Cucumber can't find steps when running a single feature

I've just installed cucumber into a new rails project (first time setting it up from scratch) and it works wonderfully when running all tests (bundle exec cucumber) but can't find any of my steps when ...
0
votes
1answer
8 views

How can I see cucumber table differences with the progress formatter?

In cucumber, when my table steps fail, I see the following error plus a stack trace, but there is no actual information given about the table differences. Tables were not identical ...
0
votes
2answers
40 views

Look for text in a div that has multiple links under it with Watir

I am trying to verify that the text of a link is present in a . The div is not available until a link is clicked. After the link is click more links become available to click. Below is what the html ...
0
votes
1answer
11 views

how can i fill in using xpath in cucumber rails

i have a scenario where all the text fields are having common ids.i want to fill in those using xpath as i can access them only using contains method of xpath .for eg: tr[td//text()[contains(., ...
-1
votes
0answers
27 views

Page expires on clicking “Back” button provided on page [closed]

I have a "Back" button on page. If I click it manually then it re-directs to previous page but if I click the button through cucumber then it shows page expired. Why it is not working as in the ...
2
votes
3answers
62 views

How to find out if a string includes a word stored in a variable

I am testing browser data via cucumber. I am looking through a list of links on a page, to determine which link I should click. So let's say I have a list of dessert links and I wanted to find the ...
0
votes
2answers
43 views

Debug Ruby/Rails in test environment

Because of this SO question here, I would like to execute ruby code step-by-step while running rspec or cucumber. Not only would I like to stop execution, but I would like to then proceed through the ...
0
votes
1answer
31 views

Count of number of test scenarios in my acceptance test suite

I have added something into my env.rb which calculates a value after each scenario completion. Say initially i = 0 (after Scenario 1) i = 0.330 (after Scenario 2) i = 0.330 + 0.3456 = 0.6756 ...
0
votes
0answers
15 views

How to interrupt a Cucumber process cleanly?

Is there a way to interrupt the process cleanly? Cucumber seems to ignore usual signals to interrupt its process (e.g. CTRL+C or kill -3 pid). The culprit? Well, I find it always hard to play with ...
0
votes
1answer
34 views

KIF or Frank for Automated iOS device testing

Looking for advice from someone who has tried both. We have a good chunk of our framework in Ruby, so Frank with Cucumber looks like an obvious choice. How well does Frank send tests to actual ...
0
votes
0answers
30 views

uninitialized constant Sidekiq::Actor::Celluloid (NameError) + Cucumber

I am getting uninitialized constant Sidekiq::Actor::Celluloid (NameError) while trying to run cucumber test. This happens after upgrading to version 2.12.0. Rails 3.0.20 Ruby 1.9.3-p194 This was ...
0
votes
1answer
19 views

Handling headless exceptions in Cucumber

I encountered following message while running cucumber tests through Jenkins. Please see the console message from below. Previously, I was able to run the job successfully but couldnt run from the ...
4
votes
4answers
179 views

stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails

This is a question about what debugging strategy I should use when encountering a stack level too deep (SystemStackError) using Ruby and Rails. I am seeing these errors when using either rspec or ...
0
votes
1answer
51 views

Capybara FactoryGirl Carrierwave cannot attach file

I am trying to test my application with cucumber and capybara. I have the following step definition: Given(/^I fill in the create article form with the valid article data$/) do @article_attributes ...
0
votes
1answer
43 views

Undefined method error when trying to run around hooks

I am trying to run given scenarios as many times per each account type. I found out in other thread that "around hooks" could be the best option to do it the DRY way. Below is my code: require ...
0
votes
1answer
26 views

Uninitialized constant Cucumber::Rails::Database (NameError)

When I try to run cucumber in my console i receive this error.. Rack::File headers parameter replaces cache_control after Rack 1.5. uninitialized constant Cucumber::Rails::Database (NameError) ...
0
votes
0answers
30 views

Unable to run cucumber on Jenkins

I am using Jenkins to schedule jobs in Cucumber. While building I am getting the following exception: ellyTagException: ...
1
vote
0answers
27 views

cucumber vs spinach in term of speed

I'm evaluating cucumber for testing, but the speed of execution is too slow. I've found Spinach but am wondering how they compare speedwise.
0
votes
0answers
22 views

How to define a feature in cucumber for more than a site?

I just wanted to test my autocomplete feature, but I'm new to Cucumber and I don't know how to efficently write this feature for more than one site. The problem is that I have to visit various sites ...
0
votes
1answer
35 views

cucumber step: how do i get the input data from a different step?

I have this scenario: Given I am on the edit_stamp page And I change the date to "14.5.2010" #<-- i need this data ... Then I should see that the new times has been set #<-- down ...
0
votes
1answer
16 views

Is it possible to user cucumber with KIF?

We are deciding on which framework to use to test our iOS app. We are mainly deciding between Frank and KIF. I know Frank and Calabash can use cucumber. I want to know if there is a way to use KIF ...
0
votes
0answers
26 views

In cucumber how to select random values from drop down field

How can I select random values from drop down field. And how can I write the feature file for it. please find the following below is the x path? <select id="field_4" ...
1
vote
1answer
27 views

How to serve static files with capybara and cucumber

I want to run acceptance tests for an rss feed reader and I need an URL to an atom or rss feed. Ive got a small file which contains my sample atom/rss and i want to access it from a locally running ...
0
votes
1answer
40 views

Ruby, Watir Classic and IE: Browser stops unless it has focus

After upgrading our test quite from Watir 2 to Wait-classic 3.6 we've discovered that unless IE is on an interactive desktop and has focus our test scripts stop until they timeout or someone gives IE ...
0
votes
1answer
21 views

How to describe default state in features and GUI details

I have a button that changes its caption on hover. Im kinda at a loss how to phrase the features to test for that default state. At the moment Im using Scenario: show caption on hover Given ...
1
vote
1answer
46 views

How to get white space or nil object from cucumber table?

I try to pass white space character in my test. So I try the following in my cucumber step If I enter: |company_name|phone| ||#{nil}| I get {"company_name"=>"", "phone"=>"\#{nil}"} ...
0
votes
0answers
14 views

Run engine rspec/cucumber tests in the client app

I have mountable rails engine Users: users/ ... features/ ... specs/ dummy/ controllers/ models/ factories/ ... I have client app MySite, which use Users engine: ...
0
votes
0answers
51 views

Cucumber not closing IE8 or Chrome on a Windows7 VM

I have a suite of cucumber scripts that execute against our web apps. When I run the scripts against IE8 and Chrome they run fine but when it comes to closing the browser it can't. Here is the ...
0
votes
0answers
33 views

Is there a way to call or reference cucumber scenario from a step or step definition?

I have various env configurations (each one of them is setup via a particular scenario). I want to reference one or more env scenario in my feature tests. I cannot use background since for same test ...
0
votes
1answer
47 views

Ruby Cucumber - Add Ruby codes

How do I add Ruby code prior to running all the feature files in Cucumber? I tried to do that directly in the feature file (like ap 'hi'), but Cucumber seemed to ignore that and just proceeded to the ...
2
votes
2answers
46 views

How to run cucumber, ruby scripts on iPad simulator

I have run cucumber+ruby+watir scripts on windows, now I want to run those on an iPad as well. Is there any way to do this? Please tell the detailed procedure to do this.
0
votes
2answers
60 views

How to run Cucumber tests from inside a project to run on another project

I want to run my command line tool in a project against another project to analyze Cucumber tests. Both projects have their own gemsets. When I execute Cucumber pointing to the other project, then it ...
0
votes
0answers
14 views

Cucumber with Spork adding --no-profile

Whenever I run cucumber with the --drb command, the spork server runs the cucumber command with the additional arguments ["--format", "pretty", "--strict", "--tags", "~@wip", "features", ...
0
votes
0answers
25 views

Cucumber+Capybara+Rails doesn't render models

I have Model Product and I render it with <%= render @products %>. I have template _product.html.erb wich contains <%= link_to product.name, product %>. When I visit this page in browser ...

1 2 3 4 5 48