-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
62 lines (53 loc) · 1.78 KB
/
index.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
let availableWindows = {}
Cypress.Commands.add('stubAndSubscribeToNextWindow', (givenName) => {
if(!availableWindows['main']){
availableWindows['main'] = cy.state('window')
}
cy.window().then(win => {
cy.stub(win, 'open').callsFake((url, a, b) => {
availableWindows[givenName] = win.open.wrappedMethod.call(win, url, a, b)
return availableWindows[givenName]
})
})
})
Cypress.Commands.add('switchToWindowAndWaitForID', (givenName, id) => {
if(!availableWindows[givenName]){
cy.log('There is no such window ! Are you sure you used StubAndSuscribeToNextWindow and/or you waited for the window to open first ? ')
}
function finalize(){
let promise = new Cypress.Promise((resolve) => {
let popup = availableWindows[givenName]
function checkReady() {
console.log(availableWindows[givenName])
let element = popup.document.getElementById(id)
if (!(typeof element != 'undefined' && element != null)) {
setTimeout(() => {
checkReady()
}, 32) // arbitrary delay
} else {
cy.state('document', popup.document)
cy.state('window', popup)
setTimeout(resolve, 2000)
}
}
checkReady()
})
return promise
}
return finalize()
})
Cypress.Commands.add('switchToMainWindow', () => {
if(!availableWindows['main']){
cy.log('No Main Window')
}
function finalize(){
let promise = new Cypress.Promise((resolve) => {
let popup = availableWindows['main']
cy.state('document', popup.document)
cy.state('window', popup)
setTimeout(resolve, 2000)
})
return promise
}
return finalize()
})