mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* add deletekey * fix types * move page components into folder * finish tests * make linting changes * declare flashmessages ts service * restructure pki test files * add delete test * add more folders
12 lines
474 B
JavaScript
12 lines
474 B
JavaScript
export const SELECTORS = {
|
|
breadcrumbContainer: '[data-test-breadcrumbs]',
|
|
breadcrumbs: '[data-test-breadcrumbs] li',
|
|
title: '[data-test-key-details-title]',
|
|
keyIdValue: '[data-test-value-div="Key ID"]',
|
|
keyNameValue: '[data-test-value-div="Key name"]',
|
|
keyTypeValue: '[data-test-value-div="Key type"]',
|
|
keyBitsValue: '[data-test-value-div="Key bits"]',
|
|
keyDeleteButton: '[data-test-pki-key-delete] button',
|
|
confirmDelete: '[data-test-confirm-button]',
|
|
};
|