puppeteer/website/versioned_docs/version-16.1.0/api/puppeteer.jshandle.getproperties.md
release-please[bot] 2d5f216621
chore(main): release 16.1.0 (#8743)
* chore(main): release 16.1.0

* chore: generate versioned docs

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2022-08-06 16:49:20 +02:00

740 B

sidebar_label
JSHandle.getProperties

JSHandle.getProperties() method

The method returns a map with property names as keys and JSHandle instances for the property values.

Signature:

class JSHandle {
  getProperties(): Promise<Map<string, JSHandle>>;
}

Returns:

Promise<Map<string, JSHandle>>

Example

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