Skip to main content
Module

x/puppeteer/mod.ts>ExecutionContext#queryObjects

A port of puppeteer running on Deno
Latest
method ExecutionContext.prototype.queryObjects
Re-export
import { ExecutionContext } from "https://deno.land/x/puppeteer@16.2.0/mod.ts";

Iterates through the JavaScript heap and finds all the objects with the given prototype.

Examples

Example 1

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

Parameters

prototypeHandle: JSHandle<Prototype>
  • a handle to the object prototype

Returns

Promise<HandleFor<Prototype[]>>

A handle to an array of objects with the given prototype.