0
votes
0answers
10 views

Cucumber/Capybara have_selector fails to find span added with JQuery

I am experiencing a frustrating problem with what should be a very simple cucumber test. The test tries to submit a simple form without entering any form data, and expects to see an error message: ...
0
votes
0answers
9 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 ...
1
vote
0answers
19 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
14 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 ...
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
2answers
20 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
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
0answers
24 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 ...
1
vote
1answer
28 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
0answers
26 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 ...
0
votes
0answers
20 views

Capybara test that a javascript window does not appear

Here's the scenario: If an app is not approved, drag an applet onto the selected applets section. An alert window should only appear if the app is approved other wise it should drop on to the ...
0
votes
1answer
41 views

find('order-button', :disabled => false) raises ArgumentError: invalid keys

on the website that I am testing, the following happens: you click a button an ajax-call is executed, all input fields are temporarily disabled once the data is retrieved, the fields are filled in ...
0
votes
1answer
142 views

The browser window may have been closed. (Selenium::WebDriver::Error::UnknownError)

I have multiple features when run together throw this error. If I run the scenarios by them self there is no issue. I think the issue is that popups are generated during the test run and are not ...
-1
votes
0answers
44 views

How to test Google Map pin color with cucumber/capybara

I'm using cucumber & capybara with Ruby on Rails, and I want to test the colors of the "pins" on a Google Map. I haven't found any answer yet on the Internet. Can anyone help me out? Thank you! ...
2
votes
1answer
78 views

Capybara with selenium fails. Works in browser

I have a simple login system that works in the browser. I recently switched my cucumber tests to use selenium because I need ajax calls and now the login/auth steps do not pass anymore. The app still ...
0
votes
0answers
59 views

Intermittent errors running cucumber tests with capybara and poltergeist on jruby

When running cucumber 1.1.9 tests using capybara 2.0.2 and poltergeist 1.1.0 on jruby 1.7.3 I see intermittent errors like the following: Scenario: Recover username for a valid email ...
0
votes
1answer
56 views

Cucumber/Capybara- how to mark a test case pass or fail based on a boolean variable

In a cucumber test case, I have a set of acceptable expected values in an array say acceptable. And the actual result obtained is in actualResult variable. I want the test case to pass if any of ...
0
votes
1answer
421 views

Capybara-Webkit: page.should have_content() not implemented?

I have recently attempted to use: Then(/^I should see "(.*?)"$/) do |arg1| page.should have_content(arg1) end To query the page and see if a text exists on the page. This worked fine with the ...
0
votes
2answers
141 views

Database Cleaner issue with Capybara webkit

I am using Cucumber to write my integration tests and Database Cleaner to keep my db clean. Everything perfectly works as my tests don't require Javascript. I can make these last tests pass using ...
4
votes
1answer
196 views

NotImplementedError when switching to Poltergeist

I have this cucumber step definitions that work with Selenium but I get NotImplementedError when I try them with the poltergeist driver. phantom.js is installed and I can even take screenshots from ...
0
votes
0answers
74 views

How to test remote server deployment of Rails app with Cucumber and Capybara

I am developing a Rails 3.x app under Windows 7 and am using Cucumber and Capybara for testing. I have set up an Ubuntu VM and deployed my app to that. I want to use Cucumber / Capybara to test my ...
0
votes
1answer
15 views

Stubbing calls to exteranl API in gmaps4rails in cucumber scenarios

I have cucumber(with capybara) scenarios, which use gmaps4rails gem, thus some steps call gmaps external API during test's execution. I wanna stub out these calls. What is the best way to achieve ...
0
votes
3answers
57 views

Capybara skipping over a click_button

I have a test that fills out some fields and then is supposed to click a button. This is all done after loading up a modal window. However, it seems that it just skips over it and doesn't click the ...
0
votes
0answers
61 views

Testing Sinatra application with RSpec and Cucumber/Capibara

I need to test my Sinatra application by RSpec and either Cucumber or Capybara. RSpec is the most important. I run through a few Sinatra examples of how to test and found them mostly either outdated ...
0
votes
1answer
89 views

test case for hidden field is not working with cucumber

fill_in "user_role", :with => @visitor[:role] This is checking simple input field but input field with hidden it is not working for that is there any other method for hidden field.
1
vote
1answer
129 views

how to use capybara has_text

So now I've got cucumber/capybara/selenium hitting a google app script, which is great, but for some reason I can't seem to check for text in the body of the page in the way I expect. In the debugger ...
3
votes
1answer
127 views

Capybara::InfiniteRedirectError

Using OmniAuth (with omniauth_crowd), I'd like user to be redirected back to the login page if he doesn't submit right username and password. It works fine in production, but I have annoying problem ...
2
votes
1answer
223 views

How to get Cucumber/Capybara/Mechanize to work against external non-rails site

I'm trying to do BDD on a Google App Script. I understand that in principle I should be able to use some combination of Cucumber, Capybara and Mechanize to do BDD on a non-rails external site. In ...
0
votes
1answer
29 views

test for error-text that's associated with a field

In Capybara + Webkit + Ruby 1.9.3, I have the following HTML simple_form generates the following when there's an error on a specific field. I'm having trouble "getting at" the error-text span and ...
2
votes
1answer
130 views

Checking if an element exists without losing time in Capybara

I like to keep things DRY, that's why I want to have the following in one of my steps: if first(:css, "#blabla") != nil find_by_id(blabla).click end find_by_id(....) .... This means, that it ...
1
vote
2answers
185 views

How to install add ons of firefox using selenium web driver in cucumber test cases

I have to write script where I need to install firefox-add-on named is "aqqin". how can i do it
1
vote
0answers
64 views

How to find an element on a page using Firefox without a timeout?

When I attempt to find a an element, an element that is easily (relatively) fornd in chrome, times out in Firefox. Here is an example within('tr#blah') do fill_in('frm_blah', :with=>'foo') end ...
0
votes
1answer
104 views

“invalid option” error when running cucumber with “--tags”

I've been playing around with Cucumber for about three weeks now, and everything works well, except this little thing here. Whenever I run my tests with e.g. cucumber checkout.feature --tags ...
0
votes
1answer
266 views

Cucumber test suite with Capybara and Chromedriver hangs

I have a cucumber test suite which fails to run since I have moved to a new computer. The test suite uses Capybara (v1.1.2), Chrome Driver (v26.0.1383.0) and Selenium-Webdriver (v2.27.1) to run ...
2
votes
2answers
80 views

Test you are on a page with Cucumber and Capybara

In The training wheels came off post by Aslak Hellesoy he says he has removed web_steps.rb and paths.rb from more recent versions of cucumber. I can understand using the Capybara api instead of ...
0
votes
1answer
125 views

shell script to run cucumber files

I have around 50 feature files and I want the tester team to run them. I don't want them to run all the files at once and also don't want them to get in the prerequisites for running cucumber ...
0
votes
0answers
28 views

dynamic step in web_step.rb for updating a table

i want a step to update a table with the value supplied by the user in one of the cucumber scenarios .the step is : Given /^I Update the (.+) field of the (.+) table by setting it as (.+)$/ do ...
1
vote
1answer
167 views

Capybara's save_and_open_page with absolute paths for stylesheets and javascripts

I'm using rspec features with capybara for testing my rails 3.1 application. Sometimes it's useful to save the static html of a page we're breaking on and have a glance on it. That what the ...
2
votes
2answers
111 views

How do i clear my capybara steps using Page Object Pattern?

I have the following step definitions with Page Object Pattern gem 'site_prism': class Main < SitePrism::Page element :login_link, "a.log-in-link" element :login_field, ...
1
vote
2answers
61 views

How do I attach a file when the input.file has a dynamic id?

I have run into a snag with dynamic ids. The attach_file command needs the id name of the input type="file". The problem is that the id is dynamic (id="document_22") #indicating the 22nd document ...
0
votes
1answer
207 views

RSpec::Expectations::ExpectationNotMetError in cucumber routing issue

I started working on BDD through cucumber. (using Rails-3, gem 'cucumber-rails') I want to redirect to user profile page (/users/id) when successful login. I defined in controller as (redirect_to ...
0
votes
0answers
94 views

Problems with authentication in Capybara

I am testing a feature on a staging server that requires a basic authentication in order to access the site. I got it running by using the following: Capybara.app_host = ...
0
votes
3answers
83 views

How can I print the content of a <span> in Cucumber / Capybara?

I want to print the content of a error message that is situated in a span and looks something like this: <span>Es exisitiert bereits ein Account mit dieser E-Mail Adresse. Wenn Sie sich sicher ...
2
votes
1answer
54 views

How do I click a link in a row that meets specific conditions?

I wish to click a link that resides in the first table row that has some text in it. I tried the following within(all('tr').select {|elt| elt.text == "desired text" }.first) do ...
0
votes
1answer
155 views

Solve (Capybara::ElementNotFound) with simple form and cucumber

I'm using cucumber to test and I'm using simple_form for the contact form. I get the following error: Given I am on the login page And I fill in "student_name" with "sadik" Unable to find field ...
1
vote
0answers
71 views

Mouseover is not performed in cuucmber selenium

I have tried with the following codes but mouseover is not working. page.driver.browser.action.move_to(first(".aqqin-icontoolbar.aqqin-icontoolbar-share.first").native).perform ...
0
votes
1answer
78 views

Two ways to find ID in Capybara - why does one fail and the other doesn't?

I want to simply "click" on a link using Capybara and Cucumber. I have an element that looks like this: <a class="to-right" id="create-account-link" href="https://somewebsite.com/">Create ...
-1
votes
2answers
408 views

Cucumber vs Capybara

Can someone explain the difference between these two gems? Are both part of BDD buth why should I use one or another or both together? Thanks for the answers
0
votes
1answer
51 views

testing ActionMailer deliveries against a remote host

So I have a simple scenario where a newly registered user must be approved by an admin. Upon approval, they receive a mail notification. The test, however, fails at the last step. Here's the cuke: ...
1
vote
0answers
134 views

DatabaseCleaner strategy transaction is not working

In My env.rb Before do DatabaseCleaner.strategy = :transaction end Also created a hook in my shared_steps.rb Before('@database_cleaner_before') do DatabaseCleaner.start end ...

1 2 3 4 5 11