mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
13 lines
418 B
JavaScript
13 lines
418 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export const SELECTORS = {
|
|
issuerLabel: '[data-test-row-label="Issuer"]',
|
|
noStoreValue: '[data-test-value-div="Store in storage backend"]',
|
|
keyUsageValue: '[data-test-value-div="Key usage"]',
|
|
extKeyUsageValue: '[data-test-value-div="Ext key usage"]',
|
|
customTtlValue: '[data-test-value-div="Issued certificates expire after"]',
|
|
};
|