puppeteer/docs/api/puppeteer.jshandle.getproperties.md

35 lines
723 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: JSHandle.getProperties
---
# JSHandle.getProperties() method
Gets a map of handles representing the properties of the current handle.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class JSHandle {
getProperties(): Promise<Map<string, JSHandle>>;
2022-07-05 13:41:43 +00:00
}
```
**Returns:**
Promise&lt;Map&lt;string, [JSHandle](./puppeteer.jshandle.md)&gt;&gt;
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();
if (element) {
children.push(element);
}
2022-07-05 13:41:43 +00:00
}
children; // holds elementHandles to all children of document.body
```