Tagged Questions

Webrat is an acceptance testing library for Web applications written in Ruby.

learn more… | top users | synonyms

12
votes
4answers
3k views

Cucumber/Webrat: follow link by CSS class?

is it possible to follow a link by it's class name instead of the id, text or title? Given I have (haha, cucumber insider he?) the following html code: <div id="some_information_container"> ...
12
votes
9answers
7k views

Session variables with Cucumber Stories

I am working on some Cucumber stories for a 'sign up' application which has a number of steps. Rather then writing a Huuuuuuuge story to cover all the steps at once, which would be bad, I'd rather ...
10
votes
3answers
417 views

webrat autofilling form fields

I am learning how to write tests with cucumber/webrat. One of my test scenarios is set to test form validation (leaving field(s) empty). Strangely enough, fields that I do not fill-in with fill_in are ...
9
votes
4answers
2k 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 ...
8
votes
3answers
2k views

Undefined webrat methods in cucumber step_definitions

When i run my features i get this error: undefined method `visit' for #<Cucumber::Rails::World:0x81b17ac0> (NoMethodError) This is the relevant part of my Gemfile. group :development, :test ...
8
votes
1answer
5k views

Cucumber + Webrat + Selenium guide

I have been using Cucumber and Webrat for a while. I know need to start writing behaviour that involve AJAX interactions so I was thinking to use the Selenium adapter for Webrat. Can anyone point out ...
8
votes
4answers
4k views

Rspec integration tests without cucumber?

Is there a way to do integration tests with Rspec without using Cucumber? I prefer using just plain old Webrat. Thanks.
7
votes
4answers
2k views

Webrat and Rails: Using assert_contain after click_button gives me “You are being redirected”

I'm writing an integration test for a rails application using webrat. After filling out a form, the user presses submit and an account is created. click_button "Submit" assert_contain "Your Account ...
6
votes
2answers
667 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 ...
6
votes
4answers
2k 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 ...
5
votes
1answer
420 views

Cucumber and/or Webrat hates &nbsp;?

I have a cucumber step that recently started failing when an &nbsp; was added to my layout. If I take the &nbsp; out, my tests all pass. When I put it back in, every test that uses the ...
4
votes
1answer
1k views

Setting http headers RSpec 2.4 / Rails 3

I am getting started with RSpec. I have a new rails 3 app which uses the HTTP_ACCEPT_HEADER or the request 2 letter subdomain to set the application language and redirect accordingly. I am ...
4
votes
3answers
2k 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 ...
4
votes
3answers
1k views

Cucumber/Webrat not following the redirect_to

I am running rails 3.0.0, rspec-rails 2.0.0.beta.20, webrat 0.7.2.beta.1, cucumber-rails 0.3.2 I have this scenario: Scenario: Given I am on the new account page And I fill in "Name" with "John ...
4
votes
3answers
1k 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 the css selectors. I wrote one for input values based on the readme examples: Then /^I should see a value of ...
4
votes
2answers
2k views

Cucumber and webrat - How to handle dynamic URLs in the paths.rb?

I am using Cucumber for BDD development in my Ruby on Rails project and I'm running into some confusion on how the path.rb handles paths used in rails applications. Given I have: class Parent < ...
4
votes
1answer
720 views

How do I check that a form is pre-populated with values using Cucumber and Webrat?

I am learning Cucumber and Webrat with Rails and would like some advice on the best way to test an "edit" form. When I browse to a user's profile I am presented with an edit form with the user's ...
3
votes
2answers
815 views

Rails 3 integration testing - Using webrat fill_in not finding fields

I'm learning testing right now, but am having some issues with Webrat not finding form fields using fill_in even though I've verified it is on the correct page. Does Webrat work off of field names or ...
3
votes
5answers
803 views

Cucumber: selecting an element from a table for deletion or addition

I have the following table in an application I am developing using ruby on rails: I want to create a test in cucumber where I select a user from the table and delete it or edit it. I don't know ...
3
votes
2answers
264 views

How can I test one, more or none images in a page with Cucumber?

I want to test if I have 0, 1, 2 or 3 times a pictures ('foo.png') in a certain page with Cucumber. How should I write the custom step? Thanks
3
votes
4answers
537 views

Webrat says it can't find some text, but the text is actually there

I have a webpage that has a form button on it called "delete", and a cuke scenario that has the line: And I should see "delete" When I run the scenario, I get this error: expected the following ...
3
votes
4answers
3k views

WebRat+Selenium WebDriver: wait for ajax to be completed

We are running Webrat with Selenium2.0 aka WebDriver in our application. WebDriver handles page reloading very well and do not start next steps if the browser is reloading entire page. The problem is ...
3
votes
2answers
524 views

Can I use Webrat for ASP.NET applications?

Does Webrat require that the web application be written in Ruby/Rails? I'd like to try it for writing tests against an ASP.NET web application.
3
votes
3answers
2k views

How to mock/stub a model in Cucumber tests

The scenario is as follows. My Order model has an after_create that contacts a remote payment gateway to retrieve a payment URL. In my Cucumber tests I don't want to perform this action, but return an ...
3
votes
2answers
508 views

cucumber + webrat: checking text appearing twice

I am working on a rails app to self teach BDD and testing in general. Using cucumber + webrat + rspec, after railcasts video tuts. In this app a quiz has_many questions. The view I am testing should ...
3
votes
1answer
785 views

ActiveRecord dependency with Ruby, Rails, Cucumber, & RSpec

We are writing a Rails application that is using CouchDB as its data store. We're BDD/TDD'ing with RSpec and Cucumber, which is using WebRat for webpage testing I'm trying to remove ActiveRecord as ...
2
votes
1answer
209 views

no such file to load — action_controller/integration - NoMethodError for Rails 3 and Webrat

I'm getting the following failure during RSpec tests.. no such file to load -- action_controller/integration ..using Rails 3, RSpec 2 and Webrat, if I include the Webrat helpers in the following ...
2
votes
1answer
143 views

cucumber-nagios / webrat submits empty forms

I am a complete newbie with ruby and am starting out using cucumber-nagios for some BDD testing. I have installed cucumber-nagios on my Mac Pro using the instructions here: ...
2
votes
3answers
3k views

The have_selector fails in an RSpec test but page renders correctly and the tag is present

I'm working my way through the Rails Tutorial book by Hartl and I'm completely stuck on one of the tests. The test (right from the book) is very simple: require 'spec_helper' describe UsersController ...
2
votes
1answer
460 views

Integration tests with webrat and Rails3

I'm upgrading a Rails 2.3.5 app to Rails 3.0.3. But my integration tests aren't working. I'm getting this error: NoMethodError: undefined method `content_type' for nil:NilClass The line to blame is ...
2
votes
2answers
709 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 ...
2
votes
2answers
292 views

How can i unit test a “Delete link” with Ror, cucumber - webrat?

I am currently developing a Rails application, I'm trying to units test it. I chose Cucumber + WebRater. I'd like to test in my backend all delete link. I tried to go to visit a second argument (the ...
2
votes
1answer
389 views

Check select box has certain options with Webrat

How do I use Webrat to check that a select box has certain values listed as options? I currently have field_named(field).value.should contain(value) but that only passes for the first selected value ...
2
votes
1answer
396 views

Using Rails with Webrat + Selenium or only Selenium?

I'm reading The Rspec Book, and in that book they are using Webrat with Selenium. Is it possible to use Selenium directly for integration tests in Rails instead of using it through Webrat? What are ...
2
votes
2answers
824 views

How to use Page Object pattern with Cucumber and Webrat / Selenium?

I'm looking at a cucumber test suite that is somewhat brittle right now; many small steps, and no knowledge of the page itself. I'd like to factor out the logic involved in the step definitions ...
2
votes
3answers
5k views

How rspec works with rails3 for integration-tests?

What I'm trying to ahieve is to do integration tests with webrat in rails3 like Yehuda does with test-unit in http://pivotallabs.com/talks/76-extending-rails-3 minute 34. an example: describe ...
2
votes
1answer
2k views

How do I click on a specific button using cucumber/webrat when the name of the button starts with the same word?

I have the following html with multiple inputs: <input type="submit" value="Save and close" name="commit"/> <input type="submit" value="Save" name="commit"/> and would like to use ...
2
votes
3answers
709 views

Cucumber + webrat + selenium, how do I ignore hidden text?

I am using Cucumber, webrat and selenium to test a web application. I use 'I should see "something"' to verify changes. However, in many places, text to be verified only changes from hidden to visible ...
2
votes
3answers
611 views

Cucumber Table Diff and colspan

I love cucumber, and its table diff feature. But I, often use a td colspan to display the title of the table. And I can't seem to get the table diff to work when I use colspan. (Table diff expects a ...
2
votes
4answers
764 views

Using webrat's contain(text) matcher with haml

I'm using the following webrat matcher: response.should contain(text) With the following haml: %p You have = current_user.credits credits I've written the cucumber step 'Then I should see ...
2
votes
3answers
1k views

Regular expressions in cucumber steps

Cucumber generates out some neat webrat regex steps. I encountered a problem when I tried the this. In feature: And I fill in "Telephone (Home)" with "61234567" In webrat steps: When /^I fill in ...
2
votes
6answers
2k views

How can I determine if a radio button is checked already?

I'm using webrat with cucumber and I would like to test if a radio button is checked already when I am on a page. How can I do that ? I didn't find any step in webrat which can do that.
2
votes
1answer
1k views

Rails, RSpec and Webrat: Expected output matches rendered output but still getting error in view spec

I've just gotten started using BDD with RSpec/Cucumber/Webrat and Rails and I've run into some frustration trying to get my view spec to pass. First of all, I am running Ruby 1.9.1p129 with Rails ...
2
votes
4answers
2k views

Installing hpricot for JRuby

I'm trying to look at cucumber for Jruby on Rails. One of the pre-requesites is webrat which has as pre-requisite hpricot. I've installed the gem with hpricot using: gem install hpricot --source ...
2
votes
1answer
585 views

How do I catch redirections to other domains when testing with Webrat?

In my Rails app, I have a form which redirects through a foreign service, Amazon FPS. The form POSTs to an action in my app which redirects to Amazon, who collect information and then redirect back ...
1
vote
0answers
22 views

Using Webrat is not for Testing?

Can I use Webrat in controllers? I need to make some-actions-like-user-can (facebook connect). I just need to run webrat logic in controller - not in tests! I need something like: class ...
1
vote
1answer
64 views

Undefined Webrat methods in Cucumber

When I set up a new rails 3.1.3 project and write a Cucumber story with Webrat code, like this: response.should contain("abc") and I run rake cucumber, I get: undefined method `contain' for ...
1
vote
2answers
81 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
2answers
90 views

Is there a simpler way to write the following cucumber test?

I'm usisng cucmber to test a php app and it's working quite well actually. I have a cucmber feature that uses the following step to check for the presence of a link in a page: Then /^I should see a ...
1
vote
1answer
57 views

My own DSL on top of rspec, cucumber

I'm interested in applying another layer of abstraction on my cucumber webrat BDD suite that knows about the DOM I am working with. Currently I am writing step definitions something like this ...

1 2 3 4