https://github.com/railsware/capybara-feature_helpers
https://github.com/railsware/capybara-feature_helpers
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/railsware/capybara-feature_helpers
- Owner: railsware
- License: mit
- Created: 2014-09-26T21:14:04.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-09T19:27:01.000Z (about 6 years ago)
- Last Synced: 2025-03-29T19:42:03.436Z (4 months ago)
- Language: Ruby
- Size: 223 KB
- Stars: 2
- Watchers: 34
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Capybara feature helpers
Set of handy capybara feature helpers used by Railsware:
* `within_maybe`
* `should_see_text`
* `should_not_see_text`
* `should_see_element`
* `should_not_see_element`## Requirements
* capybara 2.x
* rspec 3.x## Installation
Add to your application's `Gemfile`:
```ruby
group :test do
gem 'capybara-feature_helpers'
end
```Add to `spec/spec_helper.rb`
```ruby
require 'capybara/feature_helpers'
```## Authors
* [Andriy Yanko](http://ayanko.github.io/)