popup.js
4.35 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
/*eslint strict:0, max-statements:0*/
/*global CasperError, casper, console, phantom, require*/
var utils = require('utils');
var x = require('casper').selectXPath;
casper.test.begin('popup tests', 30, function(test) {
casper.once('popup.created', function(popup) {
test.pass('"popup.created" event is fired');
test.assert(utils.isWebPage(popup),
'"popup.created" event callback get a popup page instance');
});
casper.once('popup.loaded', function(popup) {
test.pass('"popup.loaded" event is fired');
test.assertEquals(popup.evaluate(function() {
return document.title;
}), 'CasperJS test index',
'"popup.loaded" is triggered when popup content is actually loaded');
});
casper.once('popup.closed', function(popup) {
test.assertEquals(this.popups.length, 0, '"popup.closed" event is fired');
});
casper.start('tests/site/popup.html',function(){
casper.once('resource.requested', function(resource) {
test.pass('"resource.requested" event is fired');
test.assertMatch(resource.url,/index\.html/, 'resource.requested event works on popup');
});
casper.once('resource.received', function(resource) {
test.pass('"resource.received" event is fired');
test.assertMatch(resource.url,/index\.html/, 'resource.received event works on popup');
});
});
casper.waitForPopup("index.html", function() {
test.pass('Casper.waitForPopup() waits for a popup being created');
test.assertEquals(this.popups.length, 1, 'A popup has been added');
test.assert(utils.isWebPage(this.popups[0]), 'A popup is a WebPage');
});
casper.waitForPopup({windowName:"popup"}, function() {
test.pass('Casper.waitForPopup() waits for a popup being created');
test.assertEquals(this.popups.length, 1, 'A popup has been added');
test.assert(utils.isWebPage(this.popups[0]), 'A popup is a WebPage');
});
casper.withPopup('index.html', function() {
test.assertTextExists('three',
'Casper.withPopup() found a popup with expected text');
test.assertUrlMatches(/index\.html$/,
'Casper.withPopup() switched to popup as current active one');
test.assertEval(function() {
return '__utils__' in window;
}, 'Casper.withPopup() has client utils injected');
test.assertExists('h1',
'Casper.withPopup() can perform assertions on the DOM');
test.assertExists(x('//h1'),
'Casper.withPopup() can perform assertions on the DOM using XPath');
});
casper.withPopup({'title': 'CasperJS test index'}, function() {
test.assertTitle('CasperJS test index',
'Casper.withPopup() found a popup with expected title');
});
casper.then(function() {
test.assertUrlMatches(/popup\.html$/,
'Casper.withPopup() has reverted to main page after using the popup');
});
casper.thenClick('.close', function() {
test.assertEquals(this.popups.length, 0, 'Popup is removed when closed');
});
casper.thenOpen('tests/site/popup.html');
casper.waitForPopup(0, function() {
test.pass('Casper.waitForPopup() waits for a popup being created');
casper.withPopup(0, function() {
test.assertTitle('CasperJS test index',
'Casper.withPopup() can use a regexp to identify popup');
});
});
casper.thenClick('.close', function() {
test.assertUrlMatches(/popup\.html$/,
'Casper.withPopup() has reverted to main page after using the popup');
test.assertEquals(this.popups.length, 0, 'Popup is removed when closed');
this.removeAllListeners('popup.created');
this.removeAllListeners('popup.loaded');
this.removeAllListeners('popup.closed');
});
casper.thenClick('a[target="form"]');
casper.then(function(){
casper.waitForPopup(/form\.html/, function() {
test.pass('Casper.waitForPopup() waits when clicked on a link with target=form');
});
});
casper.withPopup('form.html', function() {
test.assertTitle('CasperJS test form');
});
casper.withPopup(0, function() {
test.assertTitle('CasperJS test form');
});
casper.run(function() {
test.done();
});
});