2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: JSHandle.getProperties
|
|
|
|
---
|
|
|
|
|
|
|
|
# JSHandle.getProperties() method
|
|
|
|
|
2022-08-11 09:45:35 +00:00
|
|
|
Gets a map of handles representing the properties of the current handle.
|
2022-07-05 13:41:43 +00:00
|
|
|
|
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
|
|
|
getProperties(): Promise<Map<string, JSHandle>>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-09-01 12:12:29 +00:00
|
|
|
Promise<Map<string, [JSHandle](./puppeteer.jshandle.md)>>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const listHandle = await page.evaluateHandle(() => document.body.children);
|
|
|
|
const properties = await listHandle.getProperties();
|
|
|
|
const children = [];
|
|
|
|
for (const property of properties.values()) {
|
|
|
|
const element = property.asElement();
|
2022-08-11 09:45:35 +00:00
|
|
|
if (element) {
|
|
|
|
children.push(element);
|
|
|
|
}
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
children; // holds elementHandles to all children of document.body
|
|
|
|
```
|