Frame.$$() method
This runs document.querySelectorAll
in the frame and returns the result.
Signature:
class Frame {
$$<Selector extends keyof HTMLElementTagNameMap>(
selector: Selector
): Promise<ElementHandle<HTMLElementTagNameMap[Selector]>[]>;
}
Parameters
Parameter | Type | Description |
---|---|---|
selector | Selector | a selector to search for |
Returns:
Promise<ElementHandle<HTMLElementTagNameMap[Selector]>[]>
An array of element handles pointing to the found frame elements.