-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathactions.js
229 lines (227 loc) · 6.8 KB
/
actions.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
const assert = require('assert')
const VBot = require('../../dist')
const _ = require('lodash')
process.on('unhandledRejection', (e) => {
console.log(e)
})
describe('actions', async () => {
let vbot
const fixturePath = `file:///${__dirname}/../fixtures/html`
const testPath = `${__dirname}`
let playbook = {
size: {width: 375, height: 677}
}
let opts = {
showWindow: process.env.WIN,
verbose: false,
imgdir: `${testPath}/../tmp/screenshots`,
playbook: playbook
}
beforeEach(function () {
vbot = new VBot(opts)
});
afterEach(function (done) {
vbot.close().then(done)
});
describe('click', function () {
it('should click an element', function (done) {
_.assign(playbook, {
url: `${fixturePath}/click.html`,
scenario: this.test.title,
actions: [
{type: 'click', selector: 'button'}
]
})
vbot.start(playbook)
vbot.on('end', () => {
vbot.chromejs.eval(`document.querySelector('button').innerText`).then((data) => {
assert.equal(data.result.value, 'Clicked')
done()
})
})
});
});
describe('typing', function () {
it('should type strings in an element', function (done) {
_.assign(playbook,{
url: `${fixturePath}/typing.html`,
scenario: this.test.title,
actions: [
{type: 'click', selector: 'input'},
{type: 'typing', value: 'hello', enter: true}
]
})
vbot.start(playbook)
vbot.on('end', () => {
let promise = vbot.chromejs.eval(`document.querySelector('input').value`).then((data) => {
assert.equal(data.result.value, 'hello')
})
promise = promise.then(() => {
return vbot.chromejs.eval(`document.querySelector('#demo').innerHTML`).then((data) => {
assert.equal(data.result.value, 'pressed enter')
})
})
promise.then(done)
})
});
});
describe('select', function () {
it('should select an option in a select input', function (done) {
_.assign(playbook, {
url: `${fixturePath}/select.html`,
scenario: this.test.title,
actions: [
{type: 'select', selector: 'select', selectIndex: 2},
]
})
vbot.start(playbook)
vbot.on('scenario.start', async () => {
vbot.chromejs.eval('document.querySelector("select").value').then((evalResponse) => {
assert.equal(evalResponse.result.value, 'selected_1')
})
})
vbot.on('scenario.end', async () => {
vbot.chromejs.eval('document.querySelector("select").value').then((evalResponse) => {
assert.equal(evalResponse.result.value, 'selected_2')
done()
})
});
});
});
describe('assert inner text', function () {
it('should be able to wait and assert if an element has a inner text', function (done) {
_.assign(playbook, {
url: `${fixturePath}/assertInnerText.html`,
scenario: this.test.title,
actions: [
{type: 'assertInnerText', selector: '#demo', match: 'see', waitTimeout: 2000}
]
})
vbot.start(playbook)
vbot.on('action.fail', (log) => {
assert.fail(log)
})
vbot.on('scenario.end', () => {
vbot.chromejs.eval(`document.querySelector('#demo').innerHTML`).then((data) => {
assert.equal(data.result.value, 'can you see me?')
done()
})
})
});
it('timeout assert inner text', function (done) {
_.assign(playbook, {
url: `${fixturePath}/assertInnerText.html`,
scenario: this.test.title,
actions: [
{type: 'assertInnerText', selector: '#demo', match: 'see', waitTimeout: 500}
]
})
vbot.start(playbook)
let failed = false
vbot.on('action.fail', () => {
failed = true
})
vbot.on('end', () => {
assert(failed)
done()
})
});
});
describe('scroll', function () {
it('should scroll using position', function (done) {
_.assign(playbook, {
url: `${fixturePath}/scroll.html`,
scenario: this.test.title,
actions: [
{type: 'scroll', selector: '.box', position: [0, 1000], delay: 1000},
]
})
vbot.start(playbook)
let top
vbot.on('scenario.start', () => {
vbot.chromejs.box('#test').then((box) => {
top = box.model.content[1]
})
})
vbot.on('end', () => {
vbot.chromejs.box('#test').then((box) => {
assert.notEqual(box.model.content[1], top)
done()
})
})
});
});
describe('reload', function () {
it('should reload the page', function (done) {
_.assign(playbook, {
url: `${fixturePath}/typing.html`,
scenario: this.test.title,
actions: [
{type: 'click', selector: 'input'},
{type: 'typing', value: 'hello', enter: true},
{type: 'reload'}
]
})
vbot.start(playbook)
vbot.on('end', () => {
let promise = vbot.chromejs.eval(`document.querySelector('input').value`).then((data) => {
assert.equal(data.result.value, '')
})
promise = promise.then(() => {
return vbot.chromejs.eval(`document.querySelector('#demo').innerHTML`).then((data) => {
assert.equal(data.result.value, '')
})
})
promise.then(done)
})
});
});
describe('action failed', function () {
it('action [exist] should emit action.fail when element not found', function (done) {
let action = {type: 'exist', selector: '#nofound', waitTimeout: 2000}
_.assign(playbook, {
url: `${fixturePath}/assertInnerText.html`,
scenario: this.test.title,
actions: [action]
})
vbot.start(playbook)
let failed = false
let executed = false
vbot.on('action.executed', () => {
executed = true
})
vbot.on('action.fail', (log) => {
failed = true
assert.deepEqual(log.action, action)
})
vbot.on('end', () => {
assert(failed)
assert(!executed)
done()
})
});
it('action [assertInnerText] should emit action.fail when element not found', function (done) {
_.assign(playbook, {
url: `${fixturePath}/assertInnerText.html`,
scenario: this.test.title,
actions: [
{type: 'assertInnerText', selector: '#demo', match: 'no', waitTimeout: 2000}
]
})
vbot.start(playbook)
let failed = false
let executed = false
vbot.on('action.executed', () => {
executed = true
})
vbot.on('action.fail', (log) => {
failed = true
})
vbot.on('end', () => {
assert(failed)
assert(!executed)
done()
})
});
});
})