* Resets the input state in the specified browsing context. * * @param {string} browsingContextId - The ID of the browsing context. * @returns {Promise} A promise that resolves when the release actions are sent.
(browsingContextId)
| 65 | * @returns {Promise} A promise that resolves when the release actions are sent. |
| 66 | */ |
| 67 | async release(browsingContextId) { |
| 68 | const command = { |
| 69 | method: 'input.releaseActions', |
| 70 | params: { |
| 71 | context: browsingContextId, |
| 72 | }, |
| 73 | } |
| 74 | return await this.bidi.send(command) |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Sets the files property of a given input element. |
no test coverage detected