mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* Glimmerize masked-input * Update secret-create-or-update to change masked-input value * Use maskedInput for ssh configure privateKey * Add download button to masked input and v2 secrets. Resolves #6364 * Add changelog
14 lines
412 B
JavaScript
14 lines
412 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { clickable, isPresent } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
textareaIsPresent: isPresent('[data-test-textarea]'),
|
|
copyButtonIsPresent: isPresent('[data-test-copy-button]'),
|
|
downloadButtonIsPresent: isPresent('[data-test-download-button]'),
|
|
toggleMasked: clickable('[data-test-button="toggle-masked"]'),
|
|
};
|