mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
import { clickable, collection } from 'ember-cli-page-object';
|
|
export default {
|
|
scope: '[data-popover-select]',
|
|
selected: clickable('button'),
|
|
options: collection('li[role="none"]', {
|
|
button: clickable('button'),
|
|
}),
|
|
};
|