open-vault/ui/tests/pages/components/license-info.js

18 lines
463 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2021-06-07 17:44:39 +00:00
import { text, collection } from 'ember-cli-page-object';
export default {
2021-06-07 17:44:39 +00:00
detailRows: collection('[data-test-detail-row]', {
rowName: text('[data-test-row-label]'),
rowValue: text('.column.is-flex'),
}),
featureRows: collection('[data-test-feature-row]', {
featureName: text('[data-test-row-label]'),
featureStatus: text('[data-test-feature-status]'),
}),
};