(browsingContextIds)
| 82 | } |
| 83 | |
| 84 | async init(browsingContextIds) { |
| 85 | if (!(await this._driver.getCapabilities()).get('webSocketUrl')) { |
| 86 | throw Error('WebDriver instance must support BiDi protocol') |
| 87 | } |
| 88 | |
| 89 | this.bidi = await this._driver.getBidi() |
| 90 | this._browsingContextIds = browsingContextIds |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Disowns the handles in the specified realm. |
no test coverage detected