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>
12 lines
418 B
JavaScript
12 lines
418 B
JavaScript
const SELECTORS = {
|
|
searchSelect: '.search-select',
|
|
secretsEnginesSelect: '[data-test-secrets-engines-select]',
|
|
actionSelect: '[data-test-select="action-select"]',
|
|
emptyState: '[data-test-no-mount-selected-empty]',
|
|
paramsTitle: '[data-test-search-select-params-title]',
|
|
paramSelect: '[data-test-param-select]',
|
|
getActionButton: (action) => `[data-test-button="${action}"]`,
|
|
};
|
|
|
|
export default SELECTORS;
|