puppeteer/new-docs/puppeteer.jshandle.getproperties.md
Alex Rudenko 6657364364
docs(new): migrate ElementHandle to TSDoc (#6073)
* docs(new): migrate ElementHandle to TSDoc

Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
2020-06-22 17:21:57 +02:00

962 B

Home > puppeteer > JSHandle > getProperties

JSHandle.getProperties() method

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

Signature:

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