UNPKG

ember-cli-page-object

Version:

This ember-cli addon eases the construction of page objects on your acceptance and integration tests

78 lines (74 loc) 2.32 kB
import { assign } from '../-private/helpers'; import { findMany, findOne } from '../extend'; import $ from '-jquery'; /** * @public * * Returns the value of a property from the matched element, or an array of * values from multiple matched elements. * * @example * // <input type="checkbox" checked="checked"> * * import { create, property } from 'ember-cli-page-object'; * * const page = create({ * isChecked: property('checked', 'input') * }); * * assert.ok(page.isChecked); * * @example * * // <input type="checkbox" checked="checked"> * // <input type="checkbox" checked=""> * * import { create, property } from 'ember-cli-page-object'; * * const page = create({ * inputsChecked: property('checked', 'input', { multiple: true }) * }); * * assert.deepEqual(page.inputsChecked, [true, false]); * * @example * * // <div><input></div> * // <div class="scope"><input type="checkbox" checked="checked"></div> * // <div><input></div> * * import { create, property } from 'ember-cli-page-object'; * * const page = create({ * isChecked: property('checked', 'input', { scope: '.scope' }) * }); * * assert.ok(page.isChecked); * * @public * * @param {string} propertyName - Name of the property to get * @param {string} selector - CSS selector of the element to check * @param {Object} options - Additional options * @param {string} options.scope - Nests provided scope within parent's scope * @param {boolean} options.resetScope - Override parent's scope * @param {number} options.at - Reduce the set of matched elements to the one at the specified index * @param {boolean} options.multiple - If set, the function will return an array of values * @return {Descriptor} * * @throws Will throw an error if no element matches selector * @throws Will throw an error if multiple elements are matched by selector and multiple option is not set */ export function property(propertyName, selector, userOptions = {}) { return { isDescriptor: true, get(key) { let options = assign({ pageObjectKey: key }, userOptions); if (options.multiple) { return findMany(this, selector, options).map(element => $(element).prop(propertyName)); } else { return $(findOne(this, selector, options)).prop(propertyName); } } }; }