(element, selector)
| 4612 | } |
| 4613 | |
| 4614 | function $XPath(element, selector) { |
| 4615 | const found = document.evaluate(selector, element || document.body, null, 5, null) |
| 4616 | const res = [] |
| 4617 | let current = null |
| 4618 | while ((current = found.iterateNext())) { |
| 4619 | res.push(current) |
| 4620 | } |
| 4621 | return res |
| 4622 | } |
| 4623 | |
| 4624 | async function targetCreatedHandler(page) { |
| 4625 | if (!page) return |
no test coverage detected