717 B
717 B
Frame.$$() method
This runs document.querySelectorAll
in the frame and returns the result.
Signature:
$$<T extends Element = Element>(selector: string): Promise<Array<ElementHandle<T>>>;
Parameters
Parameter | Type | Description |
---|---|---|
selector | string | a selector to search for |
Returns:
Promise<Array<ElementHandle<T>>>
An array of element handles pointing to the found frame elements.