2020-06-04 14:56:45 +00:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [queryObjects](./puppeteer.page.queryobjects.md)
|
|
|
|
|
|
|
|
## Page.queryObjects() method
|
|
|
|
|
2020-07-17 12:58:56 +00:00
|
|
|
This method iterates the JavaScript heap and finds all objects with the given prototype.
|
|
|
|
|
2020-06-04 14:56:45 +00:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
queryObjects(prototypeHandle: JSHandle): Promise<JSHandle>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2020-07-17 12:58:56 +00:00
|
|
|
| prototypeHandle | [JSHandle](./puppeteer.jshandle.md) | a handle to the object prototype. |
|
2020-06-04 14:56:45 +00:00
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
Promise<[JSHandle](./puppeteer.jshandle.md)<!-- -->>
|
|
|
|
|
2020-07-17 12:58:56 +00:00
|
|
|
## Remarks
|
|
|
|
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
// 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();
|
|
|
|
|
|
|
|
```
|
|
|
|
|