34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
921 B
921 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