puppeteer/new-docs/puppeteer.page.queryobjects.md
Jack Franklin 9fdf2ba280
chore(docs): migrate page.pdf() docs (#6228)
Also took the opportunity to pull out the PDF types into their own file
to clear up `Page.ts` slightly and give the PDF code a more natural
place to live.
2020-07-17 13:58:56 +01:00

1.2 KiB

Home > puppeteer > Page > queryObjects

Page.queryObjects() method

This method iterates the JavaScript heap and finds all objects with the given prototype.

Signature:

queryObjects(prototypeHandle: JSHandle): Promise<JSHandle>;

Parameters

Parameter Type Description
prototypeHandle JSHandle a handle to the object prototype.

Returns:

Promise<JSHandle>

Remarks

Example

// Create a Map object
await page.evaluate(() => window.map = new Map());
// Get a handle to the Map object prototype
const mapPrototype = await page.evaluateHandle(() => Map.prototype);
// Query all map instances into an array
const mapInstances = await page.queryObjects(mapPrototype);
// Count amount of map objects in heap
const count = await page.evaluate(maps => maps.length, mapInstances);
await mapInstances.dispose();
await mapPrototype.dispose();