protractor-ionic-locator

0.0.1 • Public • Published

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

Param Type
repeatDescriptor string

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!

Dependents (0)

Package Sidebar

Install

npm i protractor-ionic-locator

Weekly Downloads

25

Version

0.0.1

License

MIT

Last publish

Collaborators

  • mobilecaddyuser
  • toddhalfpenny