(selector: string, options?: Parameters<(typeof page)['locator']>[1])
| 645 | } |
| 646 | |
| 647 | locator(selector: string, options?: Parameters<(typeof page)['locator']>[1]) { |
| 648 | return page.locator(selector, options) |
| 649 | } |
| 650 | |
| 651 | /** A call that expects to be chained after a previous call, because it needs its value. */ |
| 652 | private continueChain<TNext>(nextCall: (value: TCurrent) => Promise<TNext>) { |
no outgoing calls
no test coverage detected