2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: JSHandle.getProperties
|
|
|
|
---
|
|
|
|
|
|
|
|
# JSHandle.getProperties() method
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
Gets a map of handles representing the properties of the current handle.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class JSHandle {
|
2023-09-12 20:50:13 +00:00
|
|
|
getProperties(): Promise<Map<string, JSHandle>>;
|
2022-08-06 14:49:20 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-09-12 20:50:13 +00:00
|
|
|
Promise<Map<string, [JSHandle](./puppeteer.jshandle.md)>>
|
2022-08-06 14:49:20 +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-16 11:58:16 +00:00
|
|
|
if (element) {
|
|
|
|
children.push(element);
|
|
|
|
}
|
2022-08-06 14:49:20 +00:00
|
|
|
}
|
|
|
|
children; // holds elementHandles to all children of document.body
|
|
|
|
```
|