Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/pptr/mod.ts>InternalQueryHandler

Headless Chrome Deno API
Latest
interface InternalQueryHandler
import { type InternalQueryHandler } from "https://deno.land/x/pptr@1.2.0/mod.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>