mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-07 20:51:28 +00:00
13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { text, isPresent } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
hasLabel: isPresent('[data-test-row-label]'),
|
|
rowLabel: text('[data-test-row-label]'),
|
|
rowValue: text('[data-test-row-value]'),
|
|
};
|