Files
vault/ui/tests/pages/components/info-table-row.js
2024-01-02 10:35:40 -08:00

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]'),
};