0
votes
1answer
24 views
Cucumber Table Diff and colspan
Hi guys,
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 …
0
votes
0answers
17 views
Webrat step definition to check if a button exists
The following webrat step mysteriously fails:
Then /^I should see a button called "([^\"]*)" within "([^\"]*)"$/ do |button, parent|
within(parent) do |content|
content.shou …
0
votes
0answers
10 views
Can’t get webrat to work with a Rails 2.0.2 app
I have a simple test just to see if I can get webrat working that is failing.
class AuthenticationTest < ActionController::IntegrationTest
def test_logging_in_with_valid_user …
0
votes
1answer
33 views
Annoying Webrat/Selenium Warning when changing domain names
When I'm working with AJAX + Webrat in Selenium mode, I'll often have
to specify real domains and subdomains. Consequentially I'll get this
message a lot:
14:00:45.222 WARN - …
0
votes
0answers
20 views
Error in webrat installation
I'm getting the following error when I'm trying to install webrat in my OS X, please suggest me how can i solve this problem.
ERROR:
Error installing webrat:
ERROR: Failed to bui …
0
votes
3answers
57 views
Checking an element is absent using WebRat
The following works just fine:
Then /^I should see a button called "([^\"]*)"$/ do |name|
response.should have_selector("li") do |li|
li.should have_selector("a") do |a|
…
0
votes
1answer
43 views
How do I fill in a specific field in Webrat when several share the same name and id?
I'm just getting started with Cucumber and Webrat, and am adding feature specifications to an existing Rails application. One page in the app has multiple forms on it, representin …
2
votes
2answers
86 views
Cucumber/Webrat: follow link by CSS class?
Hello there,
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="s …
0
votes
3answers
138 views
Practicing BDD with integration tests — do I need unit tests too?
At present, my development process flows like this:
I describe the expected behaviour as an integration test using using WebRat
I write the Ruby on Rails code to provide that beh …
1
vote
2answers
71 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 …
0
votes
1answer
62 views
selecting page elements with webrat
There is a list of products (html table). Each row has got product name and ends with 'add to cart' button. How to add 2 'coffee' and 3 'tea' in the cart from webrat?
Correspondin …
0
votes
1answer
151 views
Finding a label with Webrat that contains a link
So I'm doing BDD with Cucumber and have a form with checkboxes populated from a database. The labels for the checkboxes contain hyperlinks. So far, not too exotic (note, this is …
0
votes
1answer
71 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 w …
1
vote
3answers
121 views
How to create integration level test for two user interaction?
How would you test multi user interaction with Cucumber/webrat?
Meaning that there must be more than one user logged in. Good example would be simple chat application, where I wa …
0
votes
0answers
21 views
Autotest starts slowly
Hi,
I set up a new project using community engine. I had installed before shoulda autotest factory girl webrat and had used on another project and it was good. But i set up these …
