open-vault/ui/tests/pages/components/wizard/features-selection.js

10 lines
361 B
JavaScript
Raw Normal View History

import { collection, isPresent, property, clickable } from 'ember-cli-page-object';
export default {
wizardItems: collection('[data-test-select-input]', {
hasDisabledTooltip: isPresent('[data-test-tooltip]'),
}),
hasDisabledStartButton: property('disabled', '[data-test-start-button]'),
selectSecrets: clickable('[data-test-checkbox=Secrets]'),
};