(el)
| 3474 | |
| 3475 | // BC compatibility for Puppeteer < 10 |
| 3476 | async function getClickablePoint(el) { |
| 3477 | if (el.clickablePoint) return el.clickablePoint() |
| 3478 | if (el._clickablePoint) return el._clickablePoint() |
| 3479 | return null |
| 3480 | } |
| 3481 | |
| 3482 | // List of key values to key definitions |
| 3483 | // https://github.com/puppeteer/puppeteer/blob/v1.20.0/lib/USKeyboardLayout.js |
no outgoing calls
no test coverage detected