(message: string)
| 35 | } |
| 36 | |
| 37 | async sendUserMessage(message: string) { |
| 38 | await this.multimodalInput.click(); |
| 39 | await this.multimodalInput.fill(message); |
| 40 | await this.sendButton.click(); |
| 41 | } |
| 42 | |
| 43 | async isGenerationComplete() { |
| 44 | const response = await this.page.waitForResponse((response) => |
no outgoing calls
no test coverage detected