0aa0e0fe1d
* check for capabilities when finding matching paths * disable wizard items that user does not have access to * make hasPermissions accept an array of capabilities * refactor features-selection * fix tests * implement feedback
10 lines
361 B
JavaScript
10 lines
361 B
JavaScript
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]'),
|
|
};
|