Skip to main content

JSHandle.getProperty() method

Fetches a single property from the referenced object.

Signature:
getProperty<K extends keyof T>(propertyName: HandleOr<K>): Promise<HandleFor<T[K]>>;

Parameters

ParameterTypeDescription
propertyNameHandleOr<K>
Returns:

Promise<HandleFor<T[K]>>