querySelectorAll

List<DomNode> querySelectorAll(

  1. String selector
)

Queries for all elements matching the CSS selector.

Implementation

List<DomNode> querySelectorAll(String selector) =>
    _nodeListToDomNodes(_node.querySelectorAll(selector));