Adds a locators to a protractor instance that find Ionic specific elements, such as collection-repeat.
$ npm install protractor-ionic-locator
onPrepare: function () {
// Your other stuff.
require('protractor-ionic-locator')(protractor);
}
The following locators will be availble in your specs;
Find elements inside an ng-repeat.
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'));
Param | Type |
---|---|
repeatDescriptor | string |
If you want to contribute to the package please write tests... these commands run the tests.
$ npm run webdriver
$ npm run test
Base code for adding locators to Protractor was taken from Fernando Martinez's great protractor-uisref-locator package... thanks man!