puppeteer/website/versioned_docs/version-21.0.1/api/puppeteer.page.queryobjects.md
release-please[bot] 2f6870651e
chore: release main (#10680)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2023-08-03 12:19:16 +02:00

1.3 KiB

sidebar_label
Page.queryObjects

Page.queryObjects() method

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

Signature:

class Page {
  queryObjects<Prototype>(
    prototypeHandle: JSHandle<Prototype>
  ): Promise<JSHandle<Prototype[]>>;
}

Parameters

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

Returns:

Promise<JSHandle<Prototype[]>>

Promise which resolves to a handle to an array of objects with this prototype.

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();