-
Notifications
You must be signed in to change notification settings - Fork 90
/
contains.js
77 lines (75 loc) · 2.17 KB
/
contains.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { $ } from '../-private/helpers';
import { findOne } from '../-private/finders';
import { getter } from '../macros/index';
/**
* Returns a boolean representing whether an element or a set of elements contains the specified text.
*
* @example
*
* // Lorem <span>ipsum</span>
*
* import { create, contains } from 'ember-cli-page-object';
*
* const page = create({
* spanContains: contains('span')
* });
*
* assert.ok(page.spanContains('ipsum'));
*
* @example
*
* // <div><span>lorem</span></div>
* // <div class="scope"><span>ipsum</span></div>
* // <div><span>dolor</span></div>
*
* import { create, contains } from 'ember-cli-page-object';
*
* const page = create({
* spanContains: contains('span', { scope: '.scope' })
* });
*
* assert.notOk(page.spanContains('lorem'));
* assert.ok(page.spanContains('ipsum'));
*
* @example
*
* // <div><span>lorem</span></div>
* // <div class="scope"><span>ipsum</span></div>
* // <div><span>dolor</span></div>
*
* import { create, contains } from 'ember-cli-page-object';
*
* const page = create({
* scope: '.scope',
* spanContains: contains('span')
* });
*
* assert.notOk(page.spanContains('lorem'));
* assert.ok(page.spanContains('ipsum'));
*
* @public
*
* @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 {number} options.at - Reduce the set of matched elements to the one at the specified index
* @param {boolean} options.resetScope - Override parent's scope
* @param {string} options.testContainer - Context where to search elements in the DOM
* @return {Descriptor}
*
* @throws Will throw an error if no element matches selector
* @throws Will throw an error if multiple elements are matched by selector
*/
export function contains(selector, userOptions = {}) {
return getter(function (key) {
return function (textToSearch) {
let options = {
pageObjectKey: `${key}("${textToSearch}")`,
...userOptions,
};
return (
$(findOne(this, selector, options)).text().indexOf(textToSearch) > -1
);
};
});
}