No commit activity in last 3 years
No release in over 3 years
Helpers for writing integration tests against Angular apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.12
~> 5.0
~> 10.0

Runtime

 Project Readme

CapybaraAngularHelpers

Helpers for writing integration tests against Angular apps using capybara + rspec. Also includes helpers for the Ionic framework.

Installation

gem 'capybara_angular_helpers'

Usage

visit '/app/'

ng_click_on 'Sign up'

# if there are multiple buttons/link with the same title
ng_click_on 'Sign up', index: 1

ng_fill_in 'registration.email', with: 'parent@example.com'

# if there are multiple elements with the same model reference
ng_fill_in 'child.name', with: 'Fred', index: 0

ng_ionic_list_item_click_on 'List Item 1'

ng_ionic_click_right_nav
ng_ionic_click_left_nav

ng_toggle 'child.split_earnings'