mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
15 lines
439 B
JavaScript
15 lines
439 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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]'),
|
|
};
|