ElementList<Element> queryAll(
String relativeSelectors
)

Alias for querySelectorAll. Note this function is deprecated because its semantics will be changing in the future.

Source

/**
 * Alias for [querySelectorAll]. Note this function is deprecated because its
 * semantics will be changing in the future.
 */
@deprecated
@Experimental()
ElementList<Element> queryAll(String relativeSelectors) => document.queryAll(relativeSelectors);