Methods

create

addon/create.js:113-133

Creates a new PageObject.

By default, the resulting PageObject will respond to:

  • Actions: click, clickOn
  • Predicates: contains, isHidden, isVisible
  • Queries: text

definition can include a key context, which is an optional integration test this context.

If a context is passed, it is used by actions, queries, etc., as the this in this.$().

If no context is passed, the global Ember acceptence test helpers are used.

Parameters

  • definition Object PageObject definition
    • definition.context [Object] A test’s this context
  • options Object [private] Ceibo options. Do not use!

Examples

// <div class="title">My title</div>

import PageObject, { text } from 'ember-cli-page-object';

const page = PageObject.create({
  title: text('.title')
});

assert.equal(page.title, 'My title');
// <div id="my-page">
//   My super text
//   <button>Press Me</button>
// </div>

const page = PageObject.create({
  scope: '#my-page'
});

assert.equal(page.text, 'My super text');
assert.ok(page.contains('super'));
assert.ok(page.isVisible);
assert.notOk(page.isHidden);

// clicks div#my-page
page.click();

// clicks button
page.clickOn('Press Me');

Returns PageObject