open-nomad/ui/tests/pages/components/facet.js

18 lines
434 B
JavaScript
Raw Normal View History

2019-01-24 04:33:47 +00:00
import { isPresent, clickable, collection, text, attribute } from 'ember-cli-page-object';
export default scope => ({
scope,
isPresent: isPresent(),
toggle: clickable('[data-test-dropdown-trigger]'),
options: collection('[data-test-dropdown-option]', {
testContainer: '#ember-testing',
resetScope: true,
label: text(),
key: attribute('data-test-dropdown-option'),
toggle: clickable('label'),
}),
});