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