A base Page Object class with helper functions and generators to help implement the Page Object pattern for your tests. Option to run assertions in your Page Objects. For some additional reading on Page Objects and how they can help your tests, see this blog post.
ember install ember-page-object
ember generate page-object signup
Generated Page Object:
// tests/page-objects/signup.js
import PageObject from '../page-object';
export default class SignupPage extends PageObject {
}
The base Page Object wraps several of Ember's acceptance test helpers, allowing for function chaining. It also provides some of it's own helper functions which are documented here. To flesh out your page object, extend the base Page Object and use the built in helpers.
// tests/page-objects/signup.js
import PageObject from '../page-object';
export default class SignupPage extends PageObject {
fillInEmail(text) {
return this.fillIn('#email', text);
}
fillInPassword(text) {
return this.fillIn('#password', text);
}
clickSignUp() {
return this.click('#sign-up');
}
}
// tests/acceptance/signup-test.js
import SignupPage from '../page-objects/signup';
// other test code
test('user can sign up', function(assert) {
assert.expect(1);
new SignupPage({ assert })
.visit('/signup')
.fillInEmail('email@example.com')
.fillInPassword('password')
.clickSignUp()
.assertURL('/profile', 'user is redirected to their profile after signup');
});
If you want to use data attributes to decouple your tests from your
application's presentation as described in this blog post,
you can overwrite the toSelector
function in your page object. The
toSelector
function is a hook that allows you to modify the selector
that is passed in to the various helper functions.
By default, toSelector
does not modify the selector at all. Below is a simple
example of modifying toSelector
so helper functions target the
data-auto-id
data attribute during tests.
{{! signup template}}
{{input value=email data-auto-id="signup-email"}}
{{input value=password data-auto-id="signup-password"}}
<button data-auto-id="signup-button">Submit</button>
{{! other code}}
// tests/page-objects/base.js
import PageObject from '../page-object';
export default class BasePageObject extends PageObject {
toSelector(rawSelector) {
return `[data-auto-id="${rawSelector}"]`;
}
}
// tests/page-objects/signup.js
import BasePageObject from './base';
export default class SignupPageObject extends BasePageObject {
clickSignUp() {
return this.click('signup-button');
}
fillInEmail(email) {
return this.fillIn('signup-email', email);
}
fillInPassword(password) {
return this.fillIn('signup-password', password);
}
}
// tests/acceptance/signup-test.js
import SignupPage from '../page-objects/signup';
// other test code
test('user can sign up', function(assert) {
assert.expect(1);
new SignupPage({ assert })
.visit('/signup')
.fillInEmail('email@example.com')
.fillInPassword('password')
.clickSignUp()
.assertURL('/profile', 'user is redirected to their profile after signup');
});
For this example to work, you'll also have to extend the TextField
component, which drives the {{input}}
helper, and add an attribute binding for the data-auto-id attribute.
You many also want to do this for other components (eg. Ember.LinkComponent
and Ember.TextArea
).
// app/initializers/data-attribute.js
import Ember from 'ember';
export default {
name: 'data-attribute',
initialize() {
const attributeName = 'data-auto-id';
Ember.TextField.reopen({
attributeBindings: [attributeName]
});
Ember.LinkComponent.reopen({
attributeBindings: [attributeName]
});
Ember.TextArea.reopen({
attributeBindings: [attributeName]
});
}
};
Page Objects extending from the base PageObject have access to a number of helper functions. All functions return the page object instance to allow function chaining.
andThen(callback)
Wraps Ember's andThen() test helper.
export default class SignupPage extends PageObject {
assertSignupFailure(errorMessage) {
return this.andThen(() => {
this.assertHasText('.flash-warning', errorMessage);
this.assertURL('/signup');
});
}
}
click(selector = '')
Wraps Ember's click() test helper.
export default class SignupPage extends PageObject {
clickSignUp() {
return this.click('#sign-up');
}
}
fillIn(selector = '', text = '')
Wraps Ember's fillIn() test helper.
export default class SignupPage extends PageObject {
fillInEmail(text) {
return this.fillIn('#email', text);
}
}
assertURL(url = '', message = '')
Asserts that the passed in url is the current url. Accepts an optional assertion message.
test('"/profile" redirects to "/sign-in" when user is not signed in', function(assert) {
assert.expect(1);
new ProfilePage({ assert })
.visit('/profile')
.assertURL('/sign-in', 'user is redirected to "/sign-in"');
});
assertHasClass(selector = '', class = '', message = '')
Asserts the element matching the selector has the passed in class. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertInvalidEmail() {
return this.assertHasClass('#email', '.is-invalid');
}
}
assertNotHasClass(selector = '', class = '', message = '')
Asserts the element matching the selector does not have the passed in class. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertSubmitEnabled() {
return this.assertNotHasClass('#submit-button', '.disabled');
}
}
assertHasText(selector = '', text = '', message = '')
Asserts the element matching the selector contains the passed in text. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertFlashMessage(text) {
return this.assertHasText('.flash', text, `flash message with text: ${text} is displayed`);
}
}
assertNotHasText(selector = '', text = '', message = '')
Asserts the element matching the selector does not contain the passed in text. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertNotAdminUI() {
return this.assertNotHasText('.banner', 'Admin', 'admin UI is not visible');
}
}
assertPresent(selector = '', message = '')
Asserts an element matching the selector can be found. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertSignedOutNav() {
return this.assertPresent('.nav .sign-in-button', 'nav bar displays sign in button');
}
}
assertNotPresent(selector = '', message = '')
Asserts an element matching the selector is not found. Accepts an optional assertion message.
export default class SignupPage extends PageObject {
assertSignedInNav() {
return this.assertNotPresent('.nav .sign-in-button', 'nav bar does not display sign in button');
}
}
embiggen()
Embiggens the testing container for easier inspection.
test('a test that is being debugged', function(assert) {
assert.expect(1);
new PageObject({ assert })
.visit('/')
.doStuff()
.embiggen()
.pause()
.breakingCode()
});
debugger()
Throws a breakpoint via debugger within a PageObject chain.
test('a test that is being debugged', function(assert) {
assert.expect(1);
new PageObject({ assert })
.visit('/')
.doStuff()
.debugger()
.breakingCode()
});
pause()
Pauses a test so you can look around within a PageObject chain.
test('a test that is being debugged', function(assert) {
assert.expect(1);
new PageObject({ assert })
.visit('/')
.doStuff()
.embiggen()
.pause()
.breakingCode()
});
git clone
this repositorynpm install
bower install
ember server
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.