pagestack.js
6.98 KB
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
/*!
* Casper is a navigation utility for PhantomJS.
*
* Documentation: http://casperjs.org/
* Repository: http://github.com/casperjs/casperjs
*
* Copyright (c) 2011-2012 Nicolas Perriault
*
* Part of source code is Copyright Joyent, Inc. and other Node contributors.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
/*global CasperError, console, exports, phantom, patchRequire, require:true*/
require = patchRequire(require);
var utils = require('utils');
var f = utils.format;
function create() {
"use strict";
return new Stack();
}
exports.create = create;
/**
* Popups container. Implements Array prototype.
*
*/
var Stack = function Stack(){};
exports.Stack = Stack;
Stack.prototype = [];
/**
* Cleans the stack from any closed popups.
*
* @return Number New stack length
*/
Stack.prototype.clean = function clean() {
"use strict";
var self = this;
this.forEach(function(popup, index) {
// window references lose the parent attribute when they are no longer valid
if (popup.parent === null || typeof popup.parent === "undefined") {
self.splice(index, 1);
}
});
return this.length;
};
/**
* Finds a popup matching the provided information. Information can be:
*
* - RegExp: matching page url
* - String: strict page url value
* - WebPage: a direct WebPage instance
*
* @param Mixed popupInfo
* @return WebPage
*/
Stack.prototype.find = function find(popupInfo) {
"use strict";
var popup, type = utils.betterTypeOf(popupInfo);
switch (type) {
case "regexp":
popup = this.findByRegExp(popupInfo);
break;
case "string":
popup = this.findByURL(popupInfo);
break;
case "object":
popup = this.findByUrlNameTitle(popupInfo);
break;
case "number":
popup = this.findByIndex(popupInfo);
break;
case "qtruntimeobject": // WebPage
popup = popupInfo;
if (!utils.isWebPage(popup) || !this.some(function(popupPage) {
if (popupInfo.id && popupPage.id) {
return popupPage.id === popup.id;
}
return popupPage.url === popup.url;
})) {
throw new CasperError("Invalid or missing popup.");
}
break;
default:
throw new CasperError(f("Invalid popupInfo type: %s.", type));
}
return popup;
};
/**
* Finds the first popup which url matches a given RegExp.
*
* @param RegExp regexp
* @return WebPage
*/
Stack.prototype.findByRegExp = function findByRegExp(regexp) {
"use strict";
var popup = this.filter(function(popupPage) {
return regexp.test(popupPage.url);
})[0];
if (!popup) {
throw new CasperError(f("Couldn't find popup with url matching pattern %s", regexp));
}
return popup;
};
/**
* Finds the first popup matching a given title.
*
* @param String url The child WebPage title
* @return WebPage
*/
Stack.prototype.findByTitle = function findByTitle(string) {
"use strict";
var popup = this.filter(function(popupPage) {
return popupPage.title.indexOf(string) !== -1;
})[0];
if (!popup) {
throw new CasperError(f("Couldn't find popup with title containing '%s'", string));
}
return popup;
};
/**
* Finds the first popup matching a given url.
*
* @param String url The child WebPage url
* @return WebPage
*/
Stack.prototype.findByURL = function findByURL(string) {
"use strict";
var popup = this.filter(function(popupPage) {
return popupPage.url.indexOf(string) !== -1;
})[0];
if (!popup) {
throw new CasperError(f("Couldn't find popup with url containing '%s'", string));
}
return popup;
};
/**
* Finds the first popup matching a given url or name or title.
*
* @param String url The child WebPage url or name or title
* @return WebPage
*/
Stack.prototype.findByUrlNameTitle = function findByUrlNameTitle(object) {
"use strict";
var popup = null;
try {
if (typeof object.url !== "undefined") {
popup = this.findByUrl(object.url);
}
if (!popup && typeof object.title !== "undefined") {
popup = this.findByTitle(object.title);
}
if (!popup && typeof object.windowName !== "undefined") {
popup = this.findByWindowName(object.windowName);
}
} catch(e){}
if (!popup) {
throw new CasperError(f("Couldn't find popup with object '%s'", JSON.stringify(object)));
}
return popup;
};
/**
* Finds the first popup matching a given window name.
*
* @param String url The child WebPage window name
* @return WebPage
*/
Stack.prototype.findByWindowName = function findByWindowName(string) {
"use strict";
var popup = this.filter(function(popupPage) {
return popupPage.windowName.indexOf(string) !== -1 || popupPage.windowNameBackUp.indexOf(string) !== -1;
})[0];
if (!popup) {
throw new CasperError(f("Couldn't find popup with name containing '%s'", string));
}
return popup;
};
/**
* Finds the first popup matching a given index.
*
* @param Number index The child WebPage index
* @return WebPage
*/
Stack.prototype.findByIndex = function findByIndex(index) {
"use strict";
var popup = this[index];
if (!popup) {
throw new CasperError(f("Couldn't find popup with index containing '%d'", index));
}
return popup;
};
/**
* Returns a human readable list of current active popup urls.
*
* @return Array Mapped stack.
*/
Stack.prototype.list = function list() {
"use strict";
return this.map(function(popup) {
try {
return popup.url;
} catch (e) {
return '<deleted>';
}
});
};
/**
* String representation of current instance.
*
* @return String
*/
Stack.prototype.toString = function toString() {
"use strict";
return f("[Object Stack], having %d popup(s)" % this.length);
};