Skip to main content
Version: Next

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

ParameterTypeDescription
selectorSelectora selector to search for

Returns:

Promise<ElementHandle<HTMLElementTagNameMap[Selector]>[]>

An array of element handles pointing to the found frame elements.