querySelectorAll

abstract suspend fun querySelectorAll(selector: String): List<Element>

Finds all descendant elements matching the given CSS selector, similar to JavaScript's querySelectorAll().

Return

A list of matching Elements.

Parameters

selector

The CSS selector to match.