When using capybara for testing, do you still need the likes of selenium?
What are the advantages of either solution?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Capybara uses Selenium as one of its drivers. By default, Capybara uses the Rack::Test driver instead of controlling an actual browser with Selenium, but when you run Javascript tests, the Selenium driver is the default.
The project’s README gives a good overview of how the pieces fit together.