-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecorder.js
219 lines (184 loc) · 6.84 KB
/
recorder.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
/**
Copyright 2014 - 2017 Cognizant Technology Solutions
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
**/
function Events() {
}
Events.getClickables = function () {
return ["button", "input", "a", "textarea"];
};
Events.getInputables = function () {
return ["color", "date", "datetime", "datetime-local", "email", "file", "month", "number", "password", "range", "search", "tel", "text", "time", "url", "week"];
};
function Recorder() {
}
Recorder.register = function () {
registerClickEvents();
registerChangeEvents();
registerContextEvent();
};
Recorder.deregister = function () {
deRegisterClickEvents();
deRegisterChangeEvents();
deRegisterContextEvent();
CognizantITS.deHighlightPreviousElement();
Util.deghlightElement(context_element);
};
Recorder.recordContextEvent = function (data) {
checkAndRecordContextEvent(data);
};
function registerClickEvents() {
window.addEventListener("click", recordClickEvent, true);
}
function registerChangeEvents() {
window.addEventListener("focus", recordFocusEvent, true);
window.addEventListener("blur", recordBlurEvent, true);
window.addEventListener("change", recordChangeEvent, true);
}
function registerContextEvent() {
window.addEventListener("contextmenu", recordContextMenu, true);
}
function deRegisterClickEvents() {
window.removeEventListener("click", recordClickEvent, true);
}
function deRegisterChangeEvents() {
window.removeEventListener("focus", recordFocusEvent, true);
window.removeEventListener("blur", recordBlurEvent, true);
window.removeEventListener("change", recordChangeEvent, true);
}
function deRegisterContextEvent() {
window.removeEventListener("contextmenu", recordContextMenu, true);
}
function recordClickEvent(event) {
if (event.which === 1) {
var clickElement = event.target;
if (findClickableElement(clickElement)) {
CognizantITS.sendRecordedObject(clickElement, "Click");
}
else if (clickElement.tagName.toLowerCase() === "li") {
unorderedListClickListener(clickElement);
}
else if (clickElement.tagName.toLowerCase() !== "select") {
checkForMutatation(clickElement);
}
}
}
function findClickableElement(element) {
if (!element.tagName)
return null;
if (Events.getClickables().indexOf(element.tagName.toLowerCase()) !== -1
|| element.hasAttribute("onclick")) {
return element;
}
else {
if (element.parentNode !== null) {
return findClickableElement(element.parentNode);
} else {
return null;
}
}
}
function unorderedListClickListener(clickElement) {
var value = Util.removeWhiteSpace(clickElement.textContent);
if (Util.isNotNullOrEmpty(value))
CognizantITS.sendRecordedObject(clickElement.parentElement, "selectValueFromUnorderedList", "@" + value);
else
CognizantITS.sendRecordedObject(clickElement.parentElement, "selectIndexFromUnorderedList", "@" + getElementCount(clickElement));
}
function recordFocusEvent(event) {
var element = event.target;
if (isInputTypeText(element))
element.previousValue = element.value;
}
function recordBlurEvent(event) {
var element = event.target;
if (isInputTypeText(element))
{
var pValue = element.previousValue;
var value = element.value;
if (Util.isNotNullOrEmpty(value) && pValue !== value)
element.dispatchEvent(new Event('change'));
}
}
function isInputTypeText(element) {
return element.tagName && element.tagName.toLowerCase() === "input" && element.type && (element.type.toLowerCase() === "text" || element.type.toLowerCase() === "password");
}
function recordChangeEvent(event) {
var element = event.target;
if (element.tagName.toLowerCase() === "select") {
recordSelectEvent(element);
}
else if (element.tagName.toLowerCase() === "textarea" || (element.type && Events.getInputables().indexOf(element.type.toLowerCase()) !== -1)) {
var input = Util.removeWhiteSpace(element.value);
if (Util.isNotNullOrEmpty(input)) {
if (element.type.toLowerCase() === "password")
CognizantITS.sendRecordedObject(element, "setEncrypted", "@" + input);
else
CognizantITS.sendRecordedObject(element, "Set", "@" + input);
}
else
CognizantITS.sendRecordedObject(element, "clear");
}
}
function recordSelectEvent(element) {
var input = "@" + Util.removeWhiteSpace(element.selectedOptions[0].text);
CognizantITS.sendRecordedObject(element, "selectByVisibleText", input);
}
var context_element;
function recordContextMenu(event) {
context_element = event.target;
}
function isBrowserAction(data) {
return !isElementAction(data);
}
function isBrowserActionWithInput(data) {
return isBrowserAction(data) && isElementWithInput(data);
}
function isElementAction(data) {
return data.getElement ? true : false;
}
function isElementActionWithInput(data) {
return isElementAction(data) && isElementWithInput(data);
}
function isElementWithInput(data) {
return data.getInput ? true : data.input ? true : false;
}
function checkAndRecordContextEvent(data) {
if (isElementActionWithInput(data)) {
if (context_element)
CognizantITS.sendRecordedObject(context_element, data.command, getInput(data));
} else if (isElementAction(data)) {
if (context_element)
CognizantITS.sendRecordedObject(context_element, data.command);
} else if (isBrowserActionWithInput(data)) {
CognizantITS.sendRecordedObject(null, data.command, getInput(data));
} else if (isBrowserAction(data)) {
CognizantITS.sendRecordedObject(null, data.command);
}
context_element = null;
}
function getInput(data) {
if (data.input)
return data.input;
return "@" + Object.getTextORValue(context_element);
}
var checkForMutatation = function (target) {
var observer = new MutationObserver(function (mutations) {
console.log(mutations);
CognizantITS.sendRecordedObject(mutations[0].target, "Click");
observer.disconnect();
});
// configuration of the observer:
var config = {attributes: true, childList: true, characterData: true};
// pass in the target node, as well as the observer options
observer.observe(target, config);
console.log("Clicke");
};