puppeteer/website/versioned_docs/version-21.4.0/api/puppeteer.jshandle.getproperties.md
release-please[bot] 35f9c6d1e6
chore: release main (#11095)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2023-10-20 12:20:50 +02:00

723 B

sidebar_label
JSHandle.getProperties

JSHandle.getProperties() method

Gets a map of handles representing the properties of the current handle.

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