(body: string)
| 165 | } |
| 166 | |
| 167 | function buildEvalScript(body: string): string { |
| 168 | return `(() => { ${body} })()`; |
| 169 | } |
| 170 | |
| 171 | function buildAgentTypeScript(selector: string, indexValue: number, text: string, clear: boolean): string { |
| 172 | const payload = { selector, index: indexValue, text, clear }; |
no outgoing calls
no test coverage detected