mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { clickable, fillable } from 'ember-cli-page-object';
|
|
|
|
import fields from '../form-field';
|
|
export default {
|
|
...fields,
|
|
ttlValue: fillable('[data-test-ttl-value]'),
|
|
ttlUnit: fillable('[data-test-ttl-value]'),
|
|
save: clickable('[data-test-save-config]'),
|
|
};
|