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 page. I replaced the snippet that should be found with some stuff that is on every page and for some text it works and for other text it doesn't. I can't find any pattern in what is found in the page's content and what is not. Webrat used to print what the page content is that it found, in case it did not contain the required phrase. Is there anyway to have capybara show what text it got from the page in which it tried to find the text?

link|improve this question

7  
As someone completely unfamiliar with the technologies named, this is my favourite stack overflow question title, ever! – Oddthinking Mar 10 '10 at 2:01
Yeah, it sounds like something zoo related. – ajmurmann Mar 10 '10 at 2:30
lol, the poor capybara! – coder_tim Apr 7 '11 at 1:07
feedback

4 Answers

up vote 8 down vote accepted

Try adding this step:

Then show me the page
link|improve this answer
Thank you very much! This helped a lot! – ajmurmann Mar 10 '10 at 17:20
feedback

Then show me the page calls webrat/capybara's underlying save_and_open_page method. Found that useful when working with steak.

link|improve this answer
feedback

You could also use "Then show me the response" which outputs the HTML to the console if you don't want to use a browser.

link|improve this answer
1  
command not within cucumber for rails3 – Jack Kinsella Nov 24 '10 at 16:30
print page.html (in your step definition) works in Rails3 – George Anderson May 22 at 13:28
feedback

If you want to have the browser open the page when the page fails you use the 'launchy' gem. Add it to your gem file, and then in /features/support create a file called debugging.rb with contents:

After do |scenario|
   save_and_open_page if scenario.failed?
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.