click.js
4.26 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
/*global casper*/
/*jshint strict:false, maxstatements: 99*/
var utils = require('utils');
casper.test.begin('click() tests', 2, function(test) {
casper.start('tests/site/index.html', function() {
this.click('a[href="test.html"]');
}).then(function() {
test.assertTitle('CasperJS test target', 'Casper.click() can click on a link');
}).thenClick('a', function() {
test.assertTitle('CasperJS test form', 'Casper.thenClick() can click on a link');
}).run(function() {
test.done();
});
});
casper.test.begin('onclick variants tests', 8, function(test) {
casper.start('tests/site/click.html', function() {
test.assert(this.click('#test1'), 'Casper.click() can click an `href="javascript:` link');
test.assert(this.click('#test2'), 'Casper.click() can click an `href="#"` link');
test.assert(this.click('#test3'), 'Casper.click() can click an `onclick=".*; return false"` link');
test.assert(this.click('#test4'), 'Casper.click() can click an unobstrusive js handled link');
var results = this.getGlobal('results');
test.assert(results.test1, 'Casper.click() has clicked an `href="javascript:` link');
test.assert(results.test2, 'Casper.click() has clicked an `href="#"` link');
test.assert(results.test3, 'Casper.click() has clicked an `onclick=".*; return false"` link');
test.assert(results.test4, 'Casper.click() has clicked an unobstrusive js handled link');
}).run(function() {
test.done();
});
});
casper.test.begin('clickLabel tests tests', 8, function(test) {
casper.start('tests/site/click.html', function() {
test.assert(this.clickLabel('test1'),
'Casper.clickLabel() can click an `href="javascript:` link');
test.assert(this.clickLabel('test2'),
'Casper.clickLabel() can click an `href="#"` link');
test.assert(this.clickLabel('test3'),
'Casper.clickLabel() can click an `onclick=".*; return false"` link');
test.assert(this.clickLabel('test4'),
'Casper.clickLabel() can click an unobstrusive js handled link');
var results = this.getGlobal('results');
test.assert(results.test1,
'Casper.clickLabel() has clicked an `href="javascript:` link');
test.assert(results.test2,
'Casper.clickLabel() has clicked an `href="#"` link');
test.assert(results.test3,
'Casper.clickLabel() has clicked an `onclick=".*; return false"` link');
test.assert(results.test4,
'Casper.clickLabel() has clicked an unobstrusive js handled link');
}).run(function() {
test.done();
});
});
casper.test.begin('casper.mouse tests', 4, function(test) {
casper.start('tests/site/click.html', function() {
this.mouse.down(200, 100);
var results = this.getGlobal('results');
test.assertEquals(results.testdown, [200, 100],
'Mouse.down() has pressed button to the specified position');
this.mouse.up(200, 100);
results = this.getGlobal('results');
test.assertEquals(results.testup, [200, 100],
'Mouse.up() has released button to the specified position');
this.mouse.move(200, 100);
results = this.getGlobal('results');
test.assertEquals(results.testmove, [200, 100],
'Mouse.move() has moved to the specified position');
if (utils.gteVersion(phantom.version, '1.8.0')) {
this.mouse.doubleclick(200, 100);
results = this.getGlobal('results');
this.test.assertEquals(results.testdoubleclick, [200, 100],
'Mouse.doubleclick() double-clicked the specified position');
} else {
this.test.pass("Mouse.doubleclick() requires PhantomJS >= 1.8");
}
}).run(function() {
test.done();
});
});
casper.test.begin('element focus on click', 1, function(test) {
casper.start().then(function() {
this.page.content = '<form><input type="text" name="foo"></form>'
this.click('form input[name=foo]')
this.page.sendEvent('keypress', 'bar');
test.assertEquals(this.getFormValues('form')['foo'], 'bar',
'Casper.click() sets the focus on clicked element');
}).run(function() {
test.done();
});
});