2018-04-03 14:16:57 +00:00
|
|
|
import { Base } from '../show';
|
|
|
|
import { create, clickable, collection, isPresent } from 'ember-cli-page-object';
|
|
|
|
|
|
|
|
export default create({
|
|
|
|
...Base,
|
2018-09-25 16:28:26 +00:00
|
|
|
rows: collection('data-test-row-label'),
|
2018-04-03 14:16:57 +00:00
|
|
|
edit: clickable('[data-test-secret-json-toggle]'),
|
|
|
|
editIsPresent: isPresent('[data-test-secret-json-toggle]'),
|
|
|
|
});
|