@@ -27,19 +27,21 @@ const until = require('../../lib/until')
27
27
suite (
28
28
function ( env ) {
29
29
let driver
30
+ let browsingcontextInspector
30
31
31
32
beforeEach ( async function ( ) {
32
33
driver = await env . builder ( ) . build ( )
33
34
} )
34
35
35
36
afterEach ( async function ( ) {
37
+ await browsingcontextInspector . close ( )
36
38
await driver . quit ( )
37
39
} )
38
40
39
41
describe ( 'Browsing Context Inspector' , function ( ) {
40
42
it ( 'can listen to window browsing context created event' , async function ( ) {
41
43
let contextInfo = null
42
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
44
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
43
45
await browsingcontextInspector . onBrowsingContextCreated ( ( entry ) => {
44
46
contextInfo = entry
45
47
} )
54
56
55
57
it ( 'can listen to browsing context destroyed event' , async function ( ) {
56
58
let contextInfo = null
57
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
59
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
58
60
await browsingcontextInspector . onBrowsingContextDestroyed ( ( entry ) => {
59
61
contextInfo = entry
60
62
} )
72
74
73
75
it ( 'can listen to tab browsing context created event' , async function ( ) {
74
76
let contextInfo = null
75
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
77
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
76
78
await browsingcontextInspector . onBrowsingContextCreated ( ( entry ) => {
77
79
contextInfo = entry
78
80
} )
87
89
} )
88
90
89
91
it ( 'can listen to dom content loaded event' , async function ( ) {
90
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
92
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
91
93
let navigationInfo = null
92
94
await browsingcontextInspector . onDomContentLoaded ( ( entry ) => {
93
95
navigationInfo = entry
@@ -104,7 +106,7 @@ suite(
104
106
105
107
it ( 'can listen to browsing context loaded event' , async function ( ) {
106
108
let navigationInfo = null
107
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
109
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
108
110
109
111
await browsingcontextInspector . onBrowsingContextLoaded ( ( entry ) => {
110
112
navigationInfo = entry
@@ -162,7 +164,7 @@ suite(
162
164
'can listen to user prompt opened event' ,
163
165
async function ( ) {
164
166
let userpromptOpened = null
165
- const browsingcontextInspector = await BrowsingContextInspector ( driver )
167
+ browsingcontextInspector = await BrowsingContextInspector ( driver )
166
168
167
169
const browsingContext = await BrowsingContext ( driver , {
168
170
browsingContextId : await driver . getWindowHandle ( ) ,
@@ -193,7 +195,7 @@ suite(
193
195
async function ( ) {
194
196
const windowHandle = await driver . getWindowHandle ( )
195
197
let userpromptClosed = null
196
- const browsingcontextInspector = await BrowsingContextInspector ( driver , windowHandle )
198
+ browsingcontextInspector = await BrowsingContextInspector ( driver , windowHandle )
197
199
198
200
const browsingContext = await BrowsingContext ( driver , {
199
201
browsingContextId : windowHandle ,
0 commit comments