Tagged Questions
0
votes
0answers
114 views
Undefined Method 'visit' after migrating to capybara from webrat in rails 3.2.12
We are migrating rails integration test to capybara from webrat. Replace response.should with response.body.should. Also added require 'capybara/rails' to spec_helper.rb. However there is an error ...
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
votes
1answer
116 views
cucumber + capybara step definition - sending POST requests
i have the following step definition:
When /^I upload it$/ do
end
which relates to a file upload. the visit method in capybara, from what i can tell is a GET only method .. and the only way to do ...
0
votes
2answers
75 views
Making sure a box is checked with Capybara?
I'm new to using Cucumber and Capybara. I've set up a test on a webpage, and run into this error when attempting to run.
undefined method `locate' for #<Webrat::Session:0x007fdf2ac41c18> ...
0
votes
1answer
72 views
how should I get webrat to test the contents of a textarea
I'm trying to work out the right syntax to have webrat check the contents of a textarea in a form.
I can check the presence of a textarea with
response.should have_selector('textarea')
but the ...
0
votes
1answer
61 views
Check links on external websites?
I need to check reciprocal links on external websites - are the best options webrat or capybara in a Rails app? Or something else?
Users will submit the URL of the page where the link back to us has ...
1
vote
1answer
255 views
Selenium doesn't open firefox
When I run a test using cucumber and selenium, the browser "firefox" is opened only the first time I run the test.
Then each time I run the test, it fails with error "execution expired ...
1
vote
0answers
798 views
Rails: Webrat or Capybara? How to tell what I'm using in my app?
I'm following Michael Hartl's online tutorial for rails: ebook.
In an earlier version his book was using rspec and webrat. I installed those. Then I found a newer version of his book and there he was ...
0
votes
1answer
469 views
RoR - Failure/Error: response.should have.selector, Integration Test Failure
Hi I'm pretty new in RoR, and I'm trying to follow Michael Hartl's tutorial where I got problem during integration test.
I tried the solution given here, Why is Rspec saying "Failure/Error: ...
1
vote
2answers
562 views
webrat have_selector content passes anything
My test suite includes RSpec2 with Capybara, Guard, and Spork. This test passes no matter what I put into :content:
it 'should something something' do
rendered.should have_selector('label', ...
1
vote
1answer
1k views
cucumber/webrat: how to test if a submit button is not disabled
Just starting to use cucumber with webrat. I have these feature steps:
When /^I choose a DVD$/ do
#just click the first one we see
check("optional-dvds[]")
end
Then /^I should be able to place ...
9
votes
2answers
2k views
Using both webrat and capybara together
I've been using Capybara for integration/request testing, but have only just realised I can't do view testing with it.
This SO answer suggests Webrat and Capybara can be used in tandem; but the RSpec ...
1
vote
3answers
533 views
Setting page/respone.body in Capybara used to work in Webrat
I am migrating to Capybara.
One of the problems I have is migrating the pdf step.
This step sets page.body to a parsed pdf.
That way I can use the default cucumber steps.
When 'I follow the PDF link ...
16
votes
4answers
4k views
HTTP basic auth for Capybara
I'm writing some RSpec tests for my Rails 3 application and trying to switch from Webrat to Capybara. So far so good but the application uses HTTP basic auth to authorize my admin user, any idea how I ...
1
vote
1answer
831 views
How to check for multiple occurrences of a word using Capybara (or Webrat, I guess) and Cucumber?
I know that /Interface \d/ occurs three times on the page. But I don't know how to test for this with Capybara in Cucumber. Here was my first attempt:
Then /^(?:|I )should see \/([^\/]*)\/ ...
2
votes
2answers
2k views
Cucumber: find the input with label text X?
In Cucumber, I'm trying to create a step like this:
Then I should see "Example business name" in the "Business name" input
I'd like the "Business name" input to be defined as "the input whose label ...
13
votes
4answers
7k views
How do you POST to a URL in Capybara?
Just switched from Cucumber+Webrat to Cucumber+Capybara and I am wondering how you can POST content to a URL in Capybara.
In Cucumber+Webrat I was able to have a step:
When /^I send "([^\"]*)" to ...
1
vote
1answer
843 views
Using rspec with Webrat instead of Capybara
I have been using rspec with webrat and decided to add cucumber for high level tests.
After installing cucumber with capybara, for some reason rspec also switched to using it.
Is there a way to tell ...
5
votes
3answers
3k views
How do I test an image alt value using capybara?
I'm trying to define a step to test the value of alt text of an image using Capybara and CSS selectors.
I wrote one for input values based on the readme examples:
Then /^I should see a value of ...
17
votes
5answers
7k views
How can I see what capybara found in a failing cucumber step?
I started migrating from cucumber + webrat to cucumber + capybara. Now the behavior of "I should see " seems to be somewhat different. Most of these fail now, although I didn't change anything on the ...
