34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
724 B
724 B
Frame.$() method
This method queries the frame for the given selector.
Signature:
$<T extends Element = Element>(selector: string): Promise<ElementHandle<T> | null>;
Parameters
Parameter | Type | Description |
---|---|---|
selector | string | a selector to query for. |
Returns:
Promise<ElementHandle<T> | null>
A promise which resolves to an ElementHandle
pointing at the element, or null
if it was not found.