Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 723 Bytes

puppeteer.jshandle.getproperties.md

File metadata and controls

34 lines (26 loc) · 723 Bytes
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