-
-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathautoDelay.js
92 lines (82 loc) · 2.6 KB
/
autoDelay.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
const Container = require('../container')
const store = require('../store')
const recorder = require('../recorder')
const event = require('../event')
const { log } = require('../output')
const standardActingHelpers = Container.STANDARD_ACTING_HELPERS
const methodsToDelay = ['click', 'fillField', 'checkOption', 'pressKey', 'doubleClick', 'rightClick']
const defaultConfig = {
methods: methodsToDelay,
delayBefore: 100,
delayAfter: 200,
}
/**
*
* Sometimes it takes some time for a page to respond to user's actions.
* Depending on app's performance this can be either slow or fast.
*
* For instance, if you click a button and nothing happens - probably JS event is not attached to this button yet
* Also, if you fill field and input validation doesn't accept your input - maybe because you typed value too fast.
*
* This plugin allows to slow down tests execution when a test running too fast.
* It puts a tiny delay for before and after action commands.
*
* Commands affected (by default):
*
* * `click`
* * `fillField`
* * `checkOption`
* * `pressKey`
* * `doubleClick`
* * `rightClick`
*
*
* #### Configuration
*
* ```js
* plugins: {
* autoDelay: {
* enabled: true
* }
* }
* ```
*
* Possible config options:
*
* * `methods`: list of affected commands. Can be overridden
* * `delayBefore`: put a delay before a command. 100ms by default
* * `delayAfter`: put a delay after a command. 200ms by default
*
*/
module.exports = function (config) {
const affectedHelpers = [...standardActingHelpers, 'REST']
const helpers = Container.helpers()
let helper
config = Object.assign(defaultConfig, config)
for (const helperName of affectedHelpers) {
if (Object.keys(helpers).indexOf(helperName) > -1) {
helper = helpers[helperName]
}
}
if (!helper) return // no helpers for auto-delay
event.dispatcher.on(event.step.before, step => {
if (config.methods.indexOf(step.helperMethod) < 0) return // skip non-actions
recorder.add('auto-delay', async () => {
if (store.debugMode) return // no need to delay in debug
log(`Delaying for ${config.delayBefore}ms`)
return new Promise(resolve => {
setTimeout(resolve, config.delayBefore)
})
})
})
event.dispatcher.on(event.step.after, step => {
if (config.methods.indexOf(step.helperMethod) < 0) return // skip non-actions
recorder.add('auto-delay', async () => {
if (store.debugMode) return // no need to delay in debug
log(`Delaying for ${config.delayAfter}ms`)
return new Promise(resolve => {
setTimeout(resolve, config.delayAfter)
})
})
})
}