(page: Page)
| 147 | }; |
| 148 | |
| 149 | const readHandshakeOrdering = (page: Page): Promise<ReadonlyArray<string>> => |
| 150 | page.evaluate(() => globalThis.__handshakeOrder ?? []); |
| 151 | |
| 152 | const readConsoleStyle = async (page: Page): Promise<{ primary: string; buttonBg: string }> => { |
| 153 | const button = page.getByRole("button", { name: "Rename", exact: true }); |