本文へ移動
バージョン: 22.5.0

Page.queryObjects() メソッド

このメソッドはJavaScriptヒープを反復処理し、指定されたプロトタイプを持つすべてのオブジェクトを見つけます。

シグネチャ:

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

パラメータ

パラメータ説明
prototypeHandleJSHandle<Prototype>オブジェクトプロトタイプへのハンドル。

戻り値

Promise<JSHandle<Prototype[]>>

このプロトタイプを持つオブジェクトの配列へのハンドルを解決するPromise。

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