Navigate to a URL.
(url: string)
| 329 | |
| 330 | /** Navigate to a URL. */ |
| 331 | async go(url: string): Promise<void> { |
| 332 | debug('page.go', { url, context: this.contextId }); |
| 333 | await this.client.send('vibium:page.navigate', { |
| 334 | context: this.contextId, |
| 335 | url, |
| 336 | }); |
| 337 | } |
| 338 | |
| 339 | /** Navigate back in history. */ |
| 340 | async back(): Promise<void> { |