(el)
| 4742 | } |
| 4743 | |
| 4744 | async function clickablePoint(el) { |
| 4745 | const rect = await el.boundingBox() |
| 4746 | if (!rect) throw new ElementNotFound(el) |
| 4747 | const { x, y, width, height } = rect |
| 4748 | return { x: x + width / 2, y: y + height / 2 } |
| 4749 | } |
| 4750 | |
| 4751 | async function refreshContextSession() { |
| 4752 | // close other sessions with timeout protection, but preserve active session contexts |
no outgoing calls
no test coverage detected