-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
279 lines (239 loc) · 9.29 KB
/
content.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
267
268
269
270
271
272
273
274
275
276
277
278
279
//content script
var node = null;
document.addEventListener("mousedown", function (event) {
const node = event.target;
console.log("-- IN SELF ON CONTEXT --");
tagName = node.nodeName.toLowerCase();
var locatorsArr = [];
var xpathContainsArr = [];
var cSharpRefsArr = [];
var uniquesArr = [];
var pythonRefsArr = [];
var rubyRefsArr = [];
var javaRefsArr = [];
var name,
value,
locator,
xpathContains,
xpathEquals,
cSharpRef,
pythonRef,
rubyRef,
javaRef;
if (tagName != "body") {
//console.log(' -- TAG NAME != BODY --');
//// For each node attribute
for (var i = 0; i < node.attributes.length; i++) {
//// Get its attribute name and value
name = node.attributes[i].name;
value = node.attributes[i].value;
//console.log(' -- LOOPING ON NODE ATTRIBUTES --' + name + ":" + value);
if (value.indexOf("'") < 0 && value.length > 0) {
if (tagName == "select") {
locator =
'locator.LocateDropdown("' +
tagName +
'" , "' +
name +
'" , "' +
value +
'");';
} else {
locator =
'locator.Locate("' +
tagName +
'" , "' +
name +
'" , "' +
value +
'");';
}
//// Set standard contains XPath
xpathContains =
"//" + tagName + "[contains(@" + name + ",'" + value + "')]";
//cSharpRef = "driver.FindElement(By.XPath(\"//" + tagName + "[contains(@" + name + ",\'" + value + "\')]\"));";
cSharpRef = 'driver.FindElement(By.XPath("' + xpathContains + '"));';
pythonRef = 'driver.find_element_by_xpath("' + xpathContains + '")';
rubyRef = 'driver.find_element(:xpath, "' + xpathContains + '")';
javaRef = 'driver.findElement(By.xpath("' + xpathContains + '"));';
locatorsArr.push(locator);
xpathContainsArr.push(xpathContains);
cSharpRefsArr.push(cSharpRef);
pythonRefsArr.push(pythonRef);
rubyRefsArr.push(rubyRef);
javaRefsArr.push(javaRef);
//// Add bool to uniquesArr to show whether or not the xpath returns one and only one node
var xpr = node.ownerDocument.evaluate(
"count(" + xpathContains + ")",
node.ownerDocument.body,
null,
XPathResult.NUMBER_TYPE,
null
);
var bUnique = xpr.numberValue === 1;
uniquesArr.push(bUnique);
//////////////////////// NEW CODE
//// Set standard Equals XPath
xpathEquals = "//" + tagName + "[@" + name + "='" + value + "']";
cSharpRef = 'driver.FindElement(By.XPath("' + xpathEquals + '"));';
pythonRef = 'driver.find_element_by_xpath("' + xpathEquals + '")';
rubyRef = 'driver.find_element(:xpath, "' + xpathEquals + '")';
javaRef = 'driver.findElement(By.xpath("' + xpathEquals + '"));';
//// BUG_BOJ: Added a 'disregard' string so the support locators don't go out of sync
locatorsArr.push("DISREGARD");
xpathContainsArr.push(xpathEquals);
cSharpRefsArr.push(cSharpRef);
pythonRefsArr.push(pythonRef);
rubyRefsArr.push(rubyRef);
javaRefsArr.push(javaRef);
//// Add bool to uniquesArr to show whether or not the xpath returns one and only one node
xpr = node.ownerDocument.evaluate(
"count(" + xpathEquals + ")",
node.ownerDocument.body,
null,
XPathResult.NUMBER_TYPE,
null
);
bUnique = xpr.numberValue === 1;
uniquesArr.push(bUnique);
//////////////////////// NEW CODE
//// Handle long element names with '_' char
if (value.indexOf("_") !== -1) {
// The value has a '_' in it
//// Substring value from last _ to end
var arr = value.split("_");
var newval = arr[arr.length - 1];
value = newval;
locator =
'locator.Locate("' +
tagName +
'" , "' +
name +
'" , "' +
value +
'");';
xpathContains =
"//" + tagName + "[contains(@" + name + ",'" + value + "')]";
//cSharpRef = "driver.FindElement(By.XPath(\"//" + tagName + "[contains(@" + name + ",\'" + value + "\')]\"));";
cSharpRef = 'driver.FindElement(By.XPath("' + xpathContains + '"));';
pythonRef = 'driver.find_element_by_xpath("' + xpathContains + '")';
rubyRef = 'driver.find_element(:xpath, "' + xpathContains + '")';
javaRef = 'driver.findElement(By.xpath("' + xpathContains + '"));';
locatorsArr.push(locator);
xpathContainsArr.push(xpathContains);
cSharpRefsArr.push(cSharpRef);
pythonRefsArr.push(pythonRef);
rubyRefsArr.push(rubyRef);
javaRefsArr.push(javaRef);
xpr = node.ownerDocument.evaluate(
"count(" + xpathContains + ")",
node.ownerDocument.body,
null,
XPathResult.NUMBER_TYPE,
null
);
bUnique = xpr.numberValue === 1;
uniquesArr.push(bUnique);
}
//// Handle long element names with '$' char
if (value.indexOf("$") !== -1) {
// The value has a '_' in it
//// Substring value from last _ to end
var arr = value.split("$");
var newval = arr[arr.length - 1];
value = newval;
locator =
'locator.Locate("' +
tagName +
'" , "' +
name +
'" , "' +
value +
'");';
xpathContains =
"//" + tagName + "[contains(@" + name + ",'" + value + "')]";
//cSharpRef = "driver.FindElement(By.XPath(\"//" + tagName + "[contains(@" + name + ",\'" + value + "\')]\"));";
cSharpRef = 'driver.FindElement(By.XPath("' + xpathContains + '"));';
pythonRef = 'driver.find_element_by_xpath("' + xpathContains + '")';
rubyRef = 'driver.find_element(:xpath, "' + xpathContains + '")';
javaRef = 'driver.findElement(By.xpath("' + xpathContains + '"));';
locatorsArr.push(locator);
xpathContainsArr.push(xpathContains);
cSharpRefsArr.push(cSharpRef);
pythonRefsArr.push(pythonRef);
rubyRefsArr.push(rubyRef);
javaRefsArr.push(javaRef);
xpr = node.ownerDocument.evaluate(
"count(" + xpathContains + ")",
node.ownerDocument.body,
null,
XPathResult.NUMBER_TYPE,
null
);
bUnique = xpr.numberValue === 1;
uniquesArr.push(bUnique);
}
}
}
var nodeText = node.textContent;
if (nodeText.indexOf("'") < 0 && nodeText.length > 0) {
if (tagName != "select") {
locator = 'locator.Locate("' + tagName + '" , "' + nodeText + '");';
xpath = "//" + tagName + "[contains(.,'" + nodeText + "')]";
////cSharpRef = 'driver.FindElements(By.XPath(\"//"'+tagName+ '[contains(.,\''+ nodeText +'\')]\"));';
//cSharpRef = 'driver.FindElement(By.XPath(\"//'+tagName+ '[contains(.,\''+ nodeText +'\')]\"));';
cSharpRef = 'driver.FindElement(By.XPath("' + xpath + '"));';
pythonRef = pythonRef = 'driver.find_element_by_xpath("' + xpath + '")';
rubyRef = 'driver.find_element(:xpath, "' + xpath + '")';
javaRef = 'driver.findElement(By.xpath("' + xpath + '"));';
locatorsArr.push(locator);
xpathContainsArr.push(xpath);
cSharpRefsArr.push(cSharpRef);
pythonRefsArr.push(pythonRef);
rubyRefsArr.push(rubyRef);
javaRefsArr.push(javaRef);
var xpr = node.ownerDocument.evaluate(
"count(" + xpath + ")",
node.ownerDocument.body,
null,
XPathResult.NUMBER_TYPE,
null
);
var bUnique = xpr.numberValue === 1;
uniquesArr.push(bUnique);
}
// If not unique, add a LocateAll
//if (!bUnique)
//{
//locator = 'LocateAll(\"' + tagName + '\" , \"' + nodeText + '\");' ;
//locatorsArr.push(locator);
//}/
}
//for (var i = 0; i < xpathContainsArr.length; i++)
//{
//console.log('Recorded locator:' + xpathContainsArr[i]);
//}
console.log("Constructing result arrays");
var resultArrays = [];
resultArrays.push(locatorsArr);
resultArrays.push(xpathContainsArr);
resultArrays.push(uniquesArr);
resultArrays.push(cSharpRefsArr);
resultArrays.push(pythonRefsArr);
resultArrays.push(rubyRefsArr);
resultArrays.push(javaRefsArr);
console.log("Result array length: " + resultArrays.length);
try {
chrome.runtime.sendMessage({ type: "locators", data: resultArrays });
} catch (error) {
console.error(error);
}
}
});
chrome.runtime.onMessage.addListener(function (message) {
console.log(message);
if (message.type == "copy") {
console.log("copying to clipboard");
navigator.clipboard.writeText(message.data);
}
});