(page: Page, toolName: string)
| 124 | } |
| 125 | |
| 126 | export async function denyToolCall(page: Page, toolName: string) { |
| 127 | await page.getByTestId(`deny-button-${toolName}`).click() |
| 128 | } |
| 129 | |
| 130 | export async function isNotSupported(page: Page): Promise<boolean> { |
| 131 | return page |