()
| 384 | }) |
| 385 | } |
| 386 | refresh() { |
| 387 | // do not preserve the previous chained value, it's likely to be invalid after a reload. |
| 388 | return this.startChain(async () => { |
| 389 | await page.reload() |
| 390 | }) |
| 391 | } |
| 392 | setDimensions({ width, height }: { height: number; width: number }) { |
| 393 | return this.startOrPreserveChain(() => |
| 394 | page.setViewportSize({ width, height }) |
nothing calls this directly
no test coverage detected