0.0.1 • Published 9 years ago

protractor-ionic-locator v0.0.1

Weekly downloads
27
License
MIT
Repository
github
Last release
9 years ago

protractor-ionic-locator

Adds a locators to a protractor instance that find Ionic specific elements, such as collection-repeat.

Installation

$ npm install protractor-ionic-locator

Usage

onPrepare: function () {
  // Your other stuff.
  require('protractor-ionic-locator')(protractor);
}

The following locators will be availble in your specs;

by.collRepeater

Find elements inside an ng-repeat.

Example

View

<div collection-repeat="cat in pets">
  <span>{{cat.name}}</span>
  <span>{{cat.age}}</span>
</div>

Code

// Returns a promise that resolves to an array of WebElements containing
// all top level elements repeated by the Ionic collection-repeat repeater. 
// For 2 pets rows resolves to an array of 2 elements.
var rows = element.all(by.collRepeater('cat in pets'));

Params

ParamType
repeatDescriptorstring

Testing

If you want to contribute to the package please write tests... these commands run the tests.

$ npm run start

$ npm run webdriver

$ npm run test

Credit

Base code for adding locators to Protractor was taken from Fernando Martinez's great protractor-uisref-locator package... thanks man!