--- home: true actionText: Get Started → actionLink: /guide/ footer: MIT Licensed | Copyright © 2020-present Denis Talakevich ---

Fast Test Writing

Allow to focus on what you want to test instead of how to do it.

Simplicity

Following Ruby an Capybara naming conventions allows easily to read and understand tests code.

Customizable

You can easy extend, customize, and mix parts of library to fit your needs.

### As Easy as 1, 2, 3 ```bash # install gem install capybara_active_admin # OR echo "gem 'capybara_active_admin', group: :test, require: false" >> Gemfile ``` ```ruby # require in in rspec/rails_helper.rb require 'capybara/active_admin/rspec' ``` ::: warning COMPATIBILITY NOTE requires Ruby >= 2.3. :::