mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24cb6a28ad
* chore: document Frame class
696 B
696 B
Frame.$$() method
This runs document.querySelectorAll
in the frame and returns the result.
Signature:
$$(selector: string): Promise<ElementHandle[]>;
Parameters
Parameter | Type | Description |
---|---|---|
selector | string | a selector to search for |
Returns:
Promise<ElementHandle[]>
An array of element handles pointing to the found frame elements.