Skip to content

Commit abdaa75

Browse files
authored
[js][bidi] Fix the event unsubscribe method. Update modules to have close methods. (#14192)
1 parent 84cc67e commit abdaa75

10 files changed

+139
-72
lines changed

javascript/node/selenium-webdriver/bidi/browsingContextInspector.js

+23
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,29 @@ class BrowsingContextInspector {
138138
}
139139
})
140140
}
141+
142+
async close() {
143+
if (
144+
this._browsingContextIds !== null &&
145+
this._browsingContextIds !== undefined &&
146+
this._browsingContextIds.length > 0
147+
) {
148+
await this.bidi.unsubscribe(
149+
'browsingContext.contextCreated',
150+
'browsingContext.contextDestroyed',
151+
'browsingContext.fragmentNavigated',
152+
'browsingContext.userPromptClosed',
153+
this._browsingContextIds,
154+
)
155+
} else {
156+
await this.bidi.unsubscribe(
157+
'browsingContext.contextCreated',
158+
'browsingContext.contextDestroyed',
159+
'browsingContext.fragmentNavigated',
160+
'browsingContext.userPromptClosed',
161+
)
162+
}
163+
}
141164
}
142165

143166
async function getBrowsingContextInstance(driver, browsingContextIds = null) {

javascript/node/selenium-webdriver/bidi/index.js

+14-6
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ class Index extends EventEmitter {
157157
params.params.contexts = contextsArray
158158
}
159159

160+
this.events.push(...eventsArray)
161+
160162
await this.send(params)
161163
}
162164

@@ -167,22 +169,28 @@ class Index extends EventEmitter {
167169
* @returns {Promise<void>}
168170
*/
169171
async unsubscribe(events, browsingContexts) {
170-
if (typeof events === 'string') {
171-
this.events = this.events.filter((event) => event !== events)
172-
} else if (Array.isArray(events)) {
173-
this.events = this.events.filter((event) => !events.includes(event))
174-
}
172+
const eventsToRemove = typeof events === 'string' ? [events] : events
173+
174+
// Check if the eventsToRemove are in the subscribed events array
175+
// Filter out events that are not in this.events before filtering
176+
const existingEvents = eventsToRemove.filter((event) => this.events.includes(event))
177+
178+
// Remove the events from the subscribed events array
179+
this.events = this.events.filter((event) => !existingEvents.includes(event))
175180

176181
if (typeof browsingContexts === 'string') {
177182
this.browsingContexts.pop()
178183
} else if (Array.isArray(browsingContexts)) {
179184
this.browsingContexts = this.browsingContexts.filter((id) => !browsingContexts.includes(id))
180185
}
181186

187+
if (existingEvents.length === 0) {
188+
return
189+
}
182190
const params = {
183191
method: 'session.unsubscribe',
184192
params: {
185-
events: this.events,
193+
events: existingEvents,
186194
},
187195
}
188196

javascript/node/selenium-webdriver/bidi/logInspector.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,15 @@ class LogInspector {
330330
* @returns {Promise<void>}
331331
*/
332332
async close() {
333-
await this.bidi.unsubscribe('log.entryAdded', this._browsingContextIds)
333+
if (
334+
this._browsingContextIds !== null &&
335+
this._browsingContextIds !== undefined &&
336+
this._browsingContextIds.length > 0
337+
) {
338+
await this.bidi.unsubscribe('log.entryAdded', this._browsingContextIds)
339+
} else {
340+
await this.bidi.unsubscribe('log.entryAdded')
341+
}
334342
}
335343
}
336344

javascript/node/selenium-webdriver/bidi/network.js

+20-6
Original file line numberDiff line numberDiff line change
@@ -313,12 +313,26 @@ class Network {
313313
* @returns {Promise<void>} A promise that resolves when the network connection is closed.
314314
*/
315315
async close() {
316-
await this.bidi.unsubscribe(
317-
'network.beforeRequestSent',
318-
'network.responseStarted',
319-
'network.responseCompleted',
320-
'network.authRequired',
321-
)
316+
if (
317+
this._browsingContextIds !== null &&
318+
this._browsingContextIds !== undefined &&
319+
this._browsingContextIds.length > 0
320+
) {
321+
await this.bidi.unsubscribe(
322+
'network.beforeRequestSent',
323+
'network.responseStarted',
324+
'network.responseCompleted',
325+
'network.authRequired',
326+
this._browsingContextIds,
327+
)
328+
} else {
329+
await this.bidi.unsubscribe(
330+
'network.beforeRequestSent',
331+
'network.responseStarted',
332+
'network.responseCompleted',
333+
'network.authRequired',
334+
)
335+
}
322336
}
323337
}
324338

javascript/node/selenium-webdriver/bidi/scriptManager.js

+17
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,23 @@ class ScriptManager {
486486
}
487487
})
488488
}
489+
490+
async close() {
491+
if (
492+
this._browsingContextIds !== null &&
493+
this._browsingContextIds !== undefined &&
494+
this._browsingContextIds.length > 0
495+
) {
496+
await this.bidi.unsubscribe(
497+
'script.message',
498+
'script.realmCreated',
499+
'script.realmDestroyed',
500+
this._browsingContextIds,
501+
)
502+
} else {
503+
await this.bidi.unsubscribe('script.message', 'script.realmCreated', 'script.realmDestroyed')
504+
}
505+
}
489506
}
490507

491508
async function getScriptManagerInstance(browsingContextId, driver) {

javascript/node/selenium-webdriver/test/bidi/add_intercept_parameters_test.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,32 @@ const { UrlPattern } = require('../../bidi/urlPattern')
2828
suite(
2929
function (env) {
3030
let driver
31+
let network
3132

3233
beforeEach(async function () {
3334
driver = await env.builder().build()
35+
network = await Network(driver)
3436
})
3537

3638
afterEach(async function () {
39+
await network.close()
3740
await driver.quit()
3841
})
3942

4043
describe('Add Intercept parameters test', function () {
4144
it('can add intercept phase', async function () {
42-
const network = await Network(driver)
4345
const intercept = await network.addIntercept(new AddInterceptParameters(InterceptPhase.BEFORE_REQUEST_SENT))
4446
assert.notEqual(intercept, null)
4547
})
4648

4749
it('can add intercept phases', async function () {
48-
const network = await Network(driver)
4950
const intercept = await network.addIntercept(
5051
new AddInterceptParameters(InterceptPhase.AUTH_REQUIRED, InterceptPhase.BEFORE_REQUEST_SENT),
5152
)
5253
assert.notEqual(intercept, null)
5354
})
5455

5556
it('can add string url pattern', async function () {
56-
const network = await Network(driver)
5757
const intercept = await network.addIntercept(
5858
new AddInterceptParameters(InterceptPhase.BEFORE_REQUEST_SENT).urlStringPattern(
5959
'http://localhost:4444/basicAuth',
@@ -63,7 +63,6 @@ suite(
6363
})
6464

6565
it('can add string url patterns', async function () {
66-
const network = await Network(driver)
6766
const intercept = await network.addIntercept(
6867
new AddInterceptParameters(InterceptPhase.BEFORE_REQUEST_SENT).urlStringPatterns([
6968
'http://localhost:4444/basicAuth',
@@ -74,7 +73,6 @@ suite(
7473
})
7574

7675
it('can add url pattern', async function () {
77-
const network = await Network(driver)
7876
const urlPattern = new UrlPattern().protocol('http').hostname('localhost').port(4444).pathname('basicAuth')
7977
const intercept = await network.addIntercept(
8078
new AddInterceptParameters(InterceptPhase.BEFORE_REQUEST_SENT).urlPattern(urlPattern),
@@ -83,7 +81,6 @@ suite(
8381
})
8482

8583
it('can add url patterns', async function () {
86-
const network = await Network(driver)
8784
const urlPattern1 = new UrlPattern()
8885
.protocol('http')
8986
.hostname('localhost')

javascript/node/selenium-webdriver/test/bidi/bidi_test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,22 @@ const until = require('../../lib/until')
2727
suite(
2828
function (env) {
2929
let driver
30+
let inspector
3031

3132
beforeEach(async function () {
3233
driver = await env.builder().build()
34+
inspector = await logInspector(driver)
3335
})
3436

3537
afterEach(async function () {
38+
await inspector.close()
3639
await driver.quit()
3740
})
3841

3942
describe('Integration Tests', function () {
4043
it('can navigate and listen to errors', async function () {
4144
let logEntry = null
42-
const inspector = await logInspector(driver)
45+
4346
await inspector.onJavascriptException(function (log) {
4447
logEntry = log
4548
})
@@ -61,7 +64,6 @@ suite(
6164
assert.equal(logEntry.type, 'javascript')
6265
assert.equal(logEntry.level, 'error')
6366

64-
await inspector.close()
6567
await browsingContext.close()
6668
})
6769
})

javascript/node/selenium-webdriver/test/bidi/browsingcontext_inspector_test.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,21 @@ const until = require('../../lib/until')
2727
suite(
2828
function (env) {
2929
let driver
30+
let browsingcontextInspector
3031

3132
beforeEach(async function () {
3233
driver = await env.builder().build()
3334
})
3435

3536
afterEach(async function () {
37+
await browsingcontextInspector.close()
3638
await driver.quit()
3739
})
3840

3941
describe('Browsing Context Inspector', function () {
4042
it('can listen to window browsing context created event', async function () {
4143
let contextInfo = null
42-
const browsingcontextInspector = await BrowsingContextInspector(driver)
44+
browsingcontextInspector = await BrowsingContextInspector(driver)
4345
await browsingcontextInspector.onBrowsingContextCreated((entry) => {
4446
contextInfo = entry
4547
})
@@ -54,7 +56,7 @@ suite(
5456

5557
it('can listen to browsing context destroyed event', async function () {
5658
let contextInfo = null
57-
const browsingcontextInspector = await BrowsingContextInspector(driver)
59+
browsingcontextInspector = await BrowsingContextInspector(driver)
5860
await browsingcontextInspector.onBrowsingContextDestroyed((entry) => {
5961
contextInfo = entry
6062
})
@@ -72,7 +74,7 @@ suite(
7274

7375
it('can listen to tab browsing context created event', async function () {
7476
let contextInfo = null
75-
const browsingcontextInspector = await BrowsingContextInspector(driver)
77+
browsingcontextInspector = await BrowsingContextInspector(driver)
7678
await browsingcontextInspector.onBrowsingContextCreated((entry) => {
7779
contextInfo = entry
7880
})
@@ -87,7 +89,7 @@ suite(
8789
})
8890

8991
it('can listen to dom content loaded event', async function () {
90-
const browsingcontextInspector = await BrowsingContextInspector(driver)
92+
browsingcontextInspector = await BrowsingContextInspector(driver)
9193
let navigationInfo = null
9294
await browsingcontextInspector.onDomContentLoaded((entry) => {
9395
navigationInfo = entry
@@ -104,7 +106,7 @@ suite(
104106

105107
it('can listen to browsing context loaded event', async function () {
106108
let navigationInfo = null
107-
const browsingcontextInspector = await BrowsingContextInspector(driver)
109+
browsingcontextInspector = await BrowsingContextInspector(driver)
108110

109111
await browsingcontextInspector.onBrowsingContextLoaded((entry) => {
110112
navigationInfo = entry
@@ -162,7 +164,7 @@ suite(
162164
'can listen to user prompt opened event',
163165
async function () {
164166
let userpromptOpened = null
165-
const browsingcontextInspector = await BrowsingContextInspector(driver)
167+
browsingcontextInspector = await BrowsingContextInspector(driver)
166168

167169
const browsingContext = await BrowsingContext(driver, {
168170
browsingContextId: await driver.getWindowHandle(),
@@ -193,7 +195,7 @@ suite(
193195
async function () {
194196
const windowHandle = await driver.getWindowHandle()
195197
let userpromptClosed = null
196-
const browsingcontextInspector = await BrowsingContextInspector(driver, windowHandle)
198+
browsingcontextInspector = await BrowsingContextInspector(driver, windowHandle)
197199

198200
const browsingContext = await BrowsingContext(driver, {
199201
browsingContextId: windowHandle,

0 commit comments

Comments
 (0)