Skip to main content
Version: 16.1.0

Frame.$() method

This method queries the frame for the given selector.

Signature:

class Frame {
$<Selector extends string>(
selector: Selector
): Promise<ElementHandle<NodeFor<Selector>> | null>;
}

Parameters

ParameterTypeDescription
selectorSelectora selector to query for.

Returns:

Promise<ElementHandle<NodeFor<Selector>> | null>

A promise which resolves to an ElementHandle pointing at the element, or null if it was not found.