Skip to main content
Version: 22.6.1

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

Parameter

Type

Description

selector

Selector

A selector to query page for selector to query page for.

Returns:

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