34 lines
696 B
JavaScript
34 lines
696 B
JavaScript
import PageObject from 'ember-cli-page-object';
|
|
|
|
const {
|
|
clickable,
|
|
collection,
|
|
fillable,
|
|
property,
|
|
text
|
|
} = PageObject;
|
|
|
|
const { assign } = Object;
|
|
|
|
/*
|
|
* shared features between all pages
|
|
*/
|
|
export const defaultsForApplication = {
|
|
locale: fillable('.language-select')
|
|
};
|
|
|
|
/*
|
|
* shared features between all create/* page objects
|
|
*/
|
|
export const defaultsForCreate = assign({}, defaultsForApplication, {
|
|
back: clickable('button.prev'),
|
|
next: clickable('button[type="submit"]'),
|
|
statusBar: collection({
|
|
active: text('.form-steps button.btn-primary'),
|
|
itemScope: '.form-steps button',
|
|
item: {
|
|
isDisabled: property('disabled'),
|
|
text: text()
|
|
}
|
|
})
|
|
});
|