Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/puppeteer/vendor/puppeteer-core/puppeteer/common/Page.js>Page#$$

A port of puppeteer running on Deno
Go to Latest
method Page.prototype.$$
import { Page } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/common/Page.js";

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>>>