24cb6a28ad
* chore: document Frame class
709 B
709 B
Frame.$() method
This method queries the frame for the given selector.
Signature:
$(selector: string): Promise<ElementHandle | null>;
Parameters
Parameter | Type | Description |
---|---|---|
selector | string | a selector to query for. |
Returns:
Promise<ElementHandle | null>
A promise which resolves to an ElementHandle
pointing at the element, or null
if it was not found.