mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
701 B
701 B
sidebar_label |
---|
Frame.$ |
Frame.$() method
This method queries the frame for the given selector.
Signature:
class Frame {
$<Selector extends keyof HTMLElementTagNameMap>(
selector: Selector
): Promise<ElementHandle<HTMLElementTagNameMap[Selector]> | null>;
}
Parameters
Parameter | Type | Description |
---|---|---|
selector | Selector | a selector to query for. |
Returns:
Promise<ElementHandle<HTMLElementTagNameMap[Selector]> | null>
A promise which resolves to an ElementHandle
pointing at the element, or null
if it was not found.