2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: JSHandle.getProperty
|
|
|
|
---
|
|
|
|
|
|
|
|
# JSHandle.getProperty() method
|
|
|
|
|
|
|
|
Fetches a single property from the referenced object.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class JSHandle {
|
2023-09-01 12:12:29 +00:00
|
|
|
getProperty<K extends keyof T>(
|
2022-07-05 13:41:43 +00:00
|
|
|
propertyName: HandleOr<K>
|
|
|
|
): Promise<HandleFor<T[K]>>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
propertyName
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[HandleOr](./puppeteer.handleor.md)<K>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[HandleFor](./puppeteer.handlefor.md)<T\[K\]>>
|