Find all descendants of `dom_node` matching the CSS `selector`. Returns an `ElementCollection` of wrapped elements.
(dom_node, selector)
| 228 | |
| 229 | |
| 230 | def _find_and_wrap(dom_node, selector): |
| 231 | """ |
| 232 | Find all descendants of `dom_node` matching the CSS `selector`. |
| 233 | |
| 234 | Returns an `ElementCollection` of wrapped elements. |
| 235 | """ |
| 236 | return ElementCollection.wrap_dom_elements(dom_node.querySelectorAll(selector)) |
| 237 | |
| 238 | |
| 239 | class Element: |
no test coverage detected