-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[bidi][js] Add high-level logging API #14135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
titusfortner
merged 6 commits into
SeleniumHQ:trunk
from
pujagani:add-high-level-logging
Jun 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c9f4b60
[bidi][js] Add high-level logging API
pujagani 9a0fbfe
Merge branch 'trunk' into add-high-level-logging
pujagani a846949
Merge branch 'trunk' into add-high-level-logging
pujagani 13e2985
Merge branch 'trunk' into add-high-level-logging
titusfortner 0f63737
Merge branch 'trunk' into add-high-level-logging
pujagani fef10fd
Merge branch 'trunk' into add-high-level-logging
pujagani File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| // Licensed to the Software Freedom Conservancy (SFC) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The SFC licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| const logInspector = require('../bidi/logInspector') | ||
|
|
||
| class Script { | ||
| #driver | ||
| #logInspector | ||
|
|
||
| constructor(driver) { | ||
| this.#driver = driver | ||
| } | ||
|
|
||
| // This should be done in the constructor. | ||
| // But since it needs to call async methods we cannot do that in the constructor. | ||
| // We can have a separate async method that initialises the Script instance. | ||
| // However, that pattern does not allow chaining the methods as we would like the user to use it. | ||
| // Since it involves awaiting to get the instance and then another await to call the method. | ||
| // Using this allows the user to do this "await driver.script().addJavaScriptErrorHandler(callback)" | ||
| async #init() { | ||
| if (this.#logInspector !== undefined) { | ||
| return | ||
| } | ||
| this.#logInspector = await logInspector(this.#driver) | ||
| } | ||
|
|
||
| async addJavaScriptErrorHandler(callback) { | ||
| await this.#init() | ||
| return await this.#logInspector.onJavascriptException(callback) | ||
| } | ||
|
|
||
| async removeJavaScriptErrorHandler(id) { | ||
| await this.#init() | ||
| await this.#logInspector.removeCallback(id) | ||
| } | ||
|
|
||
| async addConsoleMessageHandler(callback) { | ||
| await this.#init() | ||
| return this.#logInspector.onConsoleEntry(callback) | ||
| } | ||
|
|
||
| async removeConsoleMessageHandler(id) { | ||
| await this.#init() | ||
|
|
||
| await this.#logInspector.removeCallback(id) | ||
| } | ||
| } | ||
|
|
||
| module.exports = Script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
javascript/node/selenium-webdriver/test/lib/webdriver_script_test.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| // Licensed to the Software Freedom Conservancy (SFC) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The SFC licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| 'use strict' | ||
|
|
||
| const assert = require('node:assert') | ||
| const { Browser } = require('../../') | ||
| const { Pages, suite } = require('../../lib/test') | ||
| const { until } = require('../../index') | ||
|
|
||
| suite( | ||
| function (env) { | ||
| let driver | ||
|
|
||
| beforeEach(async function () { | ||
| driver = await env.builder().build() | ||
| }) | ||
|
|
||
| afterEach(async function () { | ||
| await driver.quit() | ||
| }) | ||
|
|
||
| function delay(ms) { | ||
| return new Promise((resolve) => setTimeout(resolve, ms)) | ||
| } | ||
|
|
||
| describe('script()', function () { | ||
| it('can listen to console log', async function () { | ||
| let log = null | ||
| const handler = await driver.script().addConsoleMessageHandler((logEntry) => { | ||
| log = logEntry | ||
| }) | ||
|
|
||
| await driver.get(Pages.logEntryAdded) | ||
| await driver.findElement({ id: 'consoleLog' }).click() | ||
|
|
||
| await delay(3000) | ||
|
|
||
| assert.equal(log.text, 'Hello, world!') | ||
| assert.equal(log.realm, null) | ||
| assert.equal(log.type, 'console') | ||
| assert.equal(log.level, 'info') | ||
| assert.equal(log.method, 'log') | ||
| assert.equal(log.args.length, 1) | ||
| await driver.script().removeConsoleMessageHandler(handler) | ||
| }) | ||
|
|
||
| it('can listen to javascript error', async function () { | ||
| let log = null | ||
| const handler = await driver.script().addJavaScriptErrorHandler((logEntry) => { | ||
| log = logEntry | ||
| }) | ||
|
|
||
| await driver.get(Pages.logEntryAdded) | ||
| await driver.findElement({ id: 'jsException' }).click() | ||
|
|
||
| await delay(3000) | ||
|
|
||
| assert.equal(log.text, 'Error: Not working') | ||
| assert.equal(log.type, 'javascript') | ||
| assert.equal(log.level, 'error') | ||
|
|
||
| await driver.script().removeJavaScriptErrorHandler(handler) | ||
| }) | ||
|
|
||
| it('throws an error while removing a handler that does not exist', async function () { | ||
| try { | ||
| await driver.script().removeJavaScriptErrorHandler(10) | ||
| assert.fail('Expected error not thrown. Non-existent handler cannot be removed') | ||
| } catch (e) { | ||
| assert.strictEqual(e.message, 'Callback with id 10 not found') | ||
| } | ||
| }) | ||
| }) | ||
| }, | ||
| { browsers: [Browser.FIREFOX, Browser.CHROME, Browser.EDGE] }, | ||
| ) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.