Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 2x 2x 2x | import { getExecutionContext } from '../-private/execution_context'; /** * @public * * Returns a jQuery element matched by a selector built from parameters * * @example * * import { findElementWithAssert } from 'ember-cli-page-object/extend'; * * export default function isDisabled(selector, options = {}) { * return { * isDescriptor: true, * * get() { * return findElementWithAssert(this, selector, options).is(':disabled'); * } * }; * } * * @param {Ceibo} pageObjectNode - Node of the tree * @param {string} targetSelector - Specific CSS selector * @param {Object} options - Additional options * @param {boolean} options.resetScope - Do not use inherited scope * @param {string} options.contains - Filter by using :contains('foo') pseudo-class * @param {number} options.at - Filter by index using :eq(x) pseudo-class * @param {boolean} options.last - Filter by using :last pseudo-class * @param {boolean} options.visible - Filter by using :visible pseudo-class * @param {boolean} options.multiple - Specify if built selector can match multiple elements. * @param {string} options.testContainer - Context where to search elements in the DOM * @param {string} options.pageObjectKey - Used in the error message when the element is not found * @return {Object} jQuery object * * @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 findElementWithAssert(pageObjectNode, targetSelector, options = {}) { let executionContext = getExecutionContext(pageObjectNode); return executionContext.run((context) => { return context.findWithAssert(targetSelector, options); }); } |