Skip to main content
Version: 21.3.7

Page.$() method

Runs document.querySelector within the page. If no element matches the selector, the return value resolves to null.

Signature:

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

Parameters

ParameterTypeDescription
selectorSelectorA selector to query page for selector to query page for.

Returns:

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