Skip to main content
Go to Latest
interface InternalQueryHandler
import { type InternalQueryHandler } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";

Properties

optional
queryOne: (element: ElementHandle, selector: string) => Promise<ElementHandle | null>
optional
waitFor: (
domWorld: DOMWorld,
selector: string,
) => Promise<ElementHandle | null>
optional
queryAll: (element: ElementHandle, selector: string) => Promise<ElementHandle[]>
optional
queryAllArray: (element: ElementHandle, selector: string) => Promise<JSHandle>