mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-11 05:41:10 +01:00
Co-authored-by: Chelsea Shaw <cshaw@hashicorp.com> Co-authored-by: clairebontempo@gmail.com <clairebontempo@gmail.com> Co-authored-by: Angel Garbarino <angel@hashicorp.com>
15 lines
493 B
JavaScript
15 lines
493 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
const SELECTORS = {
|
|
cardTitle: '[data-test-dashboard-secrets-engines-header]',
|
|
secretEnginesTableRows: '[data-test-dashboard-secrets-engines-table] tr',
|
|
getSecretEngineAccessor: (engineId) => `[data-test-secrets-engines-row=${engineId}] [data-test-accessor]`,
|
|
getSecretEngineDescription: (engineId) =>
|
|
`[data-test-secrets-engines-row=${engineId}] [data-test-description]`,
|
|
};
|
|
|
|
export default SELECTORS;
|