Skip to main content
Version: Next

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

ParameterTypeDescription
selectorSelectora 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.