Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone explain the difference between these two gems? Are both part of BDD buth why should I use one or another or both together? Thanks for the answers

share|improve this question

2 Answers

cucumber is a BDD tool that expresses testing scenarios in a business-readable, domain-specific language.

capybara is an automated testing tool for ROR applications.

On the capybara github page, there's an example on using capybara with cucumber.

share|improve this answer

Cucumber is a general BDD tool. It knows nothing about web apps. So Cucumber step definitions call Capybara in order to test web apps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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