I am working with Cucumber and Capybara and am looking to test a basic javascript confirmation box. I am aware Capybara uses Selenium 2.0 (not RC) for its javascript testing.

Where can I find the documentation for testing a simple confirm js dialog and other features of capybara + selenium?

Thanks!

link|improve this question

1  
I also would be interested in that. I had a look at how capybara calls selenium internally and also looked at the selenium wiki: code.google.com/p/selenium/wiki/NextSteps That was somewhat helpful but some documentation specifically for the capybara + selenium combination would be great. – ajmurmann Mar 16 '10 at 23:44
feedback

5 Answers

up vote 3 down vote accepted

http://github.com/jnicklas/capybara

It supports Selenium2/WebDriver, however, not SeleniumRC.

link|improve this answer
I've known of this already. It's not much of an organized method-by-method documentation (which I was looking for), but better than no answer at all. thank you! – yuval Apr 10 '10 at 0:58
Yup, specifically section "The DSL" on the GitHub page. The full method-by-method reference is (now) linked from there. – Jo Liss Feb 23 '11 at 23:27
feedback

maybe this

http://rdoc.info/github/jnicklas/capybara

link|improve this answer
feedback

The Cucumber Book, currently in beta, has a chapter on using Capybara which contains a great summary of the Capybara API, I highly recommend it.

link|improve this answer
feedback

This appears to be more recent: http://rubydoc.info/github/jnicklas/capybara/master/

link|improve this answer
feedback

There's also a post on a google group (here), it mentions 30 or so pages from the rspec book (chapter 21, I believe) and a capybara cheat sheet which is hosted external to google groups. So far the cheat sheet looks promising.

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.