open-nomad/ui/tests/pages/jobs/list.js

43 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-07-11 01:42:19 +00:00
import {
attribute,
create,
collection,
clickable,
fillable,
isPresent,
text,
visitable,
} from 'ember-cli-page-object';
export default create({
pageSize: 10,
visit: visitable('/jobs'),
search: fillable('[data-test-jobs-search] input'),
jobs: collection('[data-test-job-row]', {
name: text('[data-test-job-name]'),
link: attribute('href', '[data-test-job-name] a'),
status: text('[data-test-job-status]'),
type: text('[data-test-job-type]'),
priority: text('[data-test-job-priority]'),
taskGroups: text('[data-test-job-task-groups]'),
clickRow: clickable(),
clickName: clickable('[data-test-job-name] a'),
}),
isEmpty: isPresent('[data-test-empty-jobs-list]'),
emptyState: {
headline: text('[data-test-empty-jobs-list-headline]'),
},
error: {
isPresent: isPresent('[data-test-error]'),
2018-07-11 01:42:19 +00:00
title: text('[data-test-error-title]'),
message: text('[data-test-error-message]'),
seekHelp: clickable('[data-test-error-message] a'),
},
});