2020-06-04 14:56:45 +00:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [JSHandle](./puppeteer.jshandle.md) > [getProperties](./puppeteer.jshandle.getproperties.md)
|
|
|
|
|
|
|
|
## JSHandle.getProperties() method
|
|
|
|
|
2020-06-22 15:21:57 +00:00
|
|
|
The method returns a map with property names as keys and JSHandle instances for the property values.
|
|
|
|
|
2020-06-04 14:56:45 +00:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
getProperties(): Promise<Map<string, JSHandle>>;
|
|
|
|
```
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
Promise<Map<string, [JSHandle](./puppeteer.jshandle.md)<!-- -->>>
|
|
|
|
|
2020-06-22 15:21:57 +00:00
|
|
|
## Example
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
children; // holds elementHandles to all children of document.body
|
|
|
|
|
|
|
|
```
|
|
|
|
|