()
| 252 | } |
| 253 | |
| 254 | async load() { |
| 255 | await this.dap.configurationDone({}); |
| 256 | await this.dap.attach({}); |
| 257 | this._cdp!.Page.enable({}); |
| 258 | this._cdp!.Page.navigate({ url: this._root._launchUrl! }); |
| 259 | await new Promise(f => this._cdp!.Page.on('frameStoppedLoading', f)); |
| 260 | await this._cdp!.Page.disable({}); |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | export class NodeTestHandle implements ITestHandle { |