mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 07:31:09 +02:00
18 lines
542 B
JavaScript
18 lines
542 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { create, visitable, collection, clickable, text } from 'ember-cli-page-object';
|
|
import uiPanel from 'vault/tests/pages/components/console/ui-panel';
|
|
|
|
export default create({
|
|
consoleToggle: clickable('[data-test-console-toggle]'),
|
|
visit: visitable('/vault/secrets'),
|
|
rows: collection('[data-test-secrets-backend-link]', {
|
|
path: text('[data-test-secret-path]'),
|
|
menu: clickable('[data-test-popup-menu-trigger]'),
|
|
}),
|
|
console: uiPanel,
|
|
});
|