-
Notifications
You must be signed in to change notification settings - Fork 2
/
locate-unique-element.js
266 lines (223 loc) · 9.44 KB
/
locate-unique-element.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/* *********************************************************************************
* Locate unique element
* *********************************************************************************/
var locateUniqueElement = (function() {
'use strict';
var getLastPath = function (xpath) {
var paths = xpath.split('/');
return paths[paths.length - 1];
},
// Return text part of an element tree or from a xpath string
getText = function (element) {
var matched,
result = '';
if (typeof element === 'string') {
// TODO: remove regex "s" flag because lower version of node is not support
matched = getLastPath(element).match(/(\[\..*?\])/igm);
result = (matched && matched[0]) || '';
} else if (typeof element === 'object') {
result = (element.text ? ('[.="' + element.text + '"]') : '');
}
var text = result && result.split('"')[1];
return (text && text.trim()) ? '[contains(., "' + text.trim() + '")]' : '';
},
// Return id of an element tree or from a xpath string
getId = function (element) {
var matched;
if (typeof element === 'string') {
matched = getLastPath(element).match(/\[(@id.*?\])/igm);
return (matched && matched[0]) || '';
}
return (element.id ? ('[@id="' + element.id + '"]') : '');
},
// Return class name
getClass = function (element) {
var matched;
if (typeof element === 'string') {
matched = getLastPath(element).match(/\[(@class.*?\])/igm);
return (matched && matched[0]) || '';
}
return (element.cls ? ('[@class="' + element.cls + '"]') : '');
},
// Return the position relative to its sibling node
getSiblingIndex = function (element) {
var matched;
if (typeof element === 'string') {
matched = getLastPath(element).match(/(\[\d+\])/igm);
return (matched && matched[0]) || '';
}
return (element.siblingIndex !== undefined ? ('[' + (element.siblingIndex+1) + ']') : '');
},
// Return element tag name
getTag = function (element) {
if (typeof element === 'string') {
return getLastPath(element).split('[')[0].toLowerCase();
}
return element.tag.toLowerCase();
},
// Construct xpath string with tag/sibling index/class name/id/text
getStrictPathFromElement = function (element) {
var text = '/' + getTag(element)
+ getSiblingIndex(element)
+ getClass(element)
+ getId(element)
+ getText(element);
return text;
},
// Construct xpath string with tag/class name/id/text
getLoosePathByRemoveIndex = function (element) {
var text = '/' + getTag(element)
+ getClass(element)
+ getId(element)
+ getText(element);
return text;
},
// Construct xpath with tag/sibling index/id/text
getLoosePathByRemoveClass = function (element) {
var text = '/' + getTag(element)
+ getSiblingIndex(element)
+ getId(element)
+ getText(element);
return text;
},
// Construct xpath with tag/sibling index/class name/text
getLoosePathByRemoveId = function (element) {
var text = '/' + getTag(element)
+ getSiblingIndex(element)
+ getClass(element)
+ getText(element);
return text;
},
// Construct xpath with tag/sibling index/id/text
getLoosePathByRemoveIndexClassId = function (element) {
var text = '/' + getTag(element) + getText(element);
return text;
},
// Find elements via XPath
evaluate = function (selector, dom) {
var snapshots = new XPathEvaluator().evaluate(
'/' + selector,
dom || document.documentElement, // Use HTML BODY DOM to compare if dom parameter is null
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null),
i,
result = [];
for (i=0; i<snapshots.snapshotLength; i++) {
result.push(snapshots.snapshotItem[i]);
}
return result;
},
// Define Operation mode: One Strict mode and 4 Maintaince modes
OperationType = {
STRICT: 'STRICT',
LOOSE_REMOVE_INDEX: 'LOOSE_REMOVE_INDEX',
LOOSE_REMOVE_CLASS: 'LOOSE_REMOVE_CLASS',
LOOSE_REMOVE_ID: 'LOOSE_REMOVE_ID',
LOOSE_REMOVE_INDEX_CLASS_ID: 'LOOSE_REMOVE_INDEX_CLASS_ID'
},
getSelector = function (element, lastSelector, operationType) {
var selector;
switch (operationType) {
case OperationType.STRICT:
selector = getStrictPathFromElement(element);
break;
case OperationType.LOOSE_REMOVE_INDEX:
selector = getLoosePathByRemoveIndex(element);
break;
case OperationType.LOOSE_REMOVE_CLASS:
selector = getLoosePathByRemoveClass(element);
break;
case OperationType.LOOSE_REMOVE_ID:
selector = getLoosePathByRemoveId(element);
break;
case OperationType.LOOSE_REMOVE_INDEX_CLASS_ID:
selector = getLoosePathByRemoveIndexClassId(element);
break;
default:
throw 'ERROR: the third parameter operationType is not allowed';
break;
}
return (selector + lastSelector);
},
updateOperationType = function (operationType) {
switch (operationType) {
case OperationType.STRICT:
return OperationType.LOOSE_REMOVE_INDEX;
break;
case OperationType.LOOSE_REMOVE_INDEX:
return OperationType.LOOSE_REMOVE_CLASS;
break;
case OperationType.LOOSE_REMOVE_CLASS:
return OperationType.LOOSE_REMOVE_ID;
break;
case OperationType.LOOSE_REMOVE_ID:
return OperationType.LOOSE_REMOVE_INDEX_CLASS_ID;
break;
case OperationType.LOOSE_REMOVE_INDEX_CLASS_ID:
return undefined;
break;
default:
throw 'ERROR: the third parameter operationType is not allowed';
break;
}
},
getParentNode = function (element) {
var matched;
if (typeof element === 'string') {
matched = element.match(/^.*(?=\/)|^.*/igm);
return matched && (matched[0] === '/' ? undefined : matched[0]);
}
return element.parentElem;
},
/**
* Locate unqiue element by element object stored before in a DOM
* @param {Object | String} element - A element tree to record self attributes and parent relationship. Or a XPath as long as possible.
* @param {String} lastSelector - First recurrence, the param is empty string '', for record xpath selector each recurrence
* @param {String} Use which mode to connect Xpath selector, strict mode, or loose mode.
* @param {Object} dom - Optional parameter, DOM will be compared
* @param {Function} evaluateFunc - Evaluate xpath function
* @returns {object} If found unique element, return the element DOM, otherwise return undefined
*/
locateUniqueElement = async function (element, lastSelector, operationType, dom, evaluateFunc) {
var selector,
result,
newType;
// Get Xpath selector
selector = getSelector(element, lastSelector, operationType);
// Evaluate Xpath selctor in HTML DOM
result = (typeof evaluateFunc === 'function') ? await evaluateFunc('/'+selector, dom) : evaluate(selector, dom);
if (result.length === 1) { // Found unique element
// return element
return {
xpath: '/'+selector,
element: result[0]
};
} else if (result.length > 1 && getParentNode(element)) { // Found multiple elements
// use strict mode to lengthen xpath recursively
return await locateUniqueElement(getParentNode(element), selector, OperationType.STRICT, dom, evaluateFunc);
} else if (result.length === 0) { // Not found element, use maintenance mode
newType = updateOperationType(operationType);
if (!newType) {
// Current mode is already the most maintenace mode, locate failed
return undefined;
}
return await locateUniqueElement(element, lastSelector, newType, dom, evaluateFunc);
} else if (!getParentNode(element)) {
return undefined;
} else {
throw 'ERROR: Never runing here';
}
};
/**
* Locate unqiue element by finding element object stored before in a DOM
* @param {Object | String} element - A element tree to record self attributes and parent relationship, or a XPath string as long as possible.
* @param {Object} dom - Optional parameter, DOM will be compared
* @param {Function} evaluateFunc - Evaluate xpath function
* @returns {object} If found unique element, return the element DOM, otherwise return undefined
*/
return async function (element, dom, evaluateFunc) {
return await locateUniqueElement(element, '', OperationType.STRICT, dom, evaluateFunc);
};
})();
module.exports = locateUniqueElement;