mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
import { Base } from '../show';
|
|
import { create, clickable, collection, isPresent } from 'ember-cli-page-object';
|
|
|
|
export default create({
|
|
...Base,
|
|
rows: collection({
|
|
scope: 'data-test-row-label',
|
|
}),
|
|
edit: clickable('[data-test-secret-json-toggle]'),
|
|
editIsPresent: isPresent('[data-test-secret-json-toggle]'),
|
|
});
|