decide.nolog.cz/tests/pages/defaults.js

22 lines
402 B
JavaScript
Raw Normal View History

import PageObject from 'ember-cli-page-object';
const {
collection,
property,
text
} = PageObject;
/*
* shared features between all create/* page objects
*/
export const defaultsForCreate = {
statusBar: collection({
active: text('.form-steps button.btn-primary'),
itemScope: '.form-steps button',
item: {
isDisabled: property('disabled'),
text: text()
}
})
};