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>
47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [ExecutionContext](./puppeteer.executioncontext.md) > [queryObjects](./puppeteer.executioncontext.queryobjects.md)
|
|
|
|
## ExecutionContext.queryObjects() method
|
|
|
|
This method iterates the JavaScript heap and finds all the objects with the given prototype.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
queryObjects(prototypeHandle: JSHandle): Promise<JSHandle>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| prototypeHandle | [JSHandle](./puppeteer.jshandle.md) | a handle to the object prototype |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<[JSHandle](./puppeteer.jshandle.md)>
|
|
|
|
A handle to an array of objects with the given prototype.
|
|
|
|
## 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();
|
|
|
|
```
|
|
|