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

51 lines
1.3 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'),
},
2018-07-11 18:59:20 +00:00
namespaceSwitcher: {
isPresent: isPresent('[data-test-namespace-switcher]'),
open: clickable('[data-test-namespace-switcher] .ember-power-select-trigger'),
options: collection('.ember-power-select-option', {
label: text(),
}),
},
2018-07-11 01:42:19 +00:00
});