Skip to main content
Version: 21.1.1

JSHandle.getProperties() method

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

Signature:

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

Returns:

Promise<Map<string, JSHandle<unknown>>>

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