Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
method Page.prototype.$$
Re-export
import { Page } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";

The method runs document.querySelectorAll within the page. If no elements match the selector, the return value resolves to [].

Type Parameters

optional
T extends any = any

Parameters

selector: string
  • A selector to query page for

Returns

Promise<Array<ElementHandle<T>>>