(page: Page)
| 48 | /** The `[data-slot='admin-user-name']` values on the page right now. Rows are |
| 49 | * named by email on this host, which is what this scenario matches on. */ |
| 50 | const rowNames = (page: Page): Promise<Array<string>> => |
| 51 | page |
| 52 | .locator("[data-slot='admin-user-row'] [data-slot='admin-user-name']") |
| 53 | .evaluateAll((elements) => elements.map((element) => element.textContent ?? "")); |
| 54 | |
| 55 | scenario( |
| 56 | "Admin · the Users pager walks a workspace larger than one page without dropping or repeating anyone", |
no outgoing calls
no test coverage detected