Fetches a single property from the referenced object.
class JSHandle {
getProperty<K extends keyof T>(
propertyName: HandleOr<K>,
): Promise<HandleFor<T[K]>>;
}
Parameter | Type | Description |
---|---|---|
propertyName | [HandleOr](./puppeteer.handleor.md)<K> |
Returns:
Promise<HandleFor<T\[K\]>>
class JSHandle {
getProperty(propertyName: string): Promise<JSHandle<unknown>>;
}
Parameter | Type | Description |
---|---|---|
propertyName | string |
Returns:
Promise<JSHandle<unknown>>