(
url: string,
options: Partial<AnyChromiumLaunchConfiguration> = {},
)
| 571 | } |
| 572 | |
| 573 | async launchUrlAndLoad( |
| 574 | url: string, |
| 575 | options: Partial<AnyChromiumLaunchConfiguration> = {}, |
| 576 | ): Promise<TestP> { |
| 577 | url = utils.completeUrl('http://localhost:8001/', url) || url; |
| 578 | const p = await this._launch(url, options); |
| 579 | await p.load(); |
| 580 | return p; |
| 581 | } |
| 582 | |
| 583 | async disconnect(): Promise<void> { |
| 584 | return new Promise<void>(cb => { |
no test coverage detected