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

Registers a CustomQueryHandler | custom query handler. After registration, the handler can be used everywhere where a selector is expected by prepending the selection string with <name>/. The name is only allowed to consist of lower- and upper case latin letters.

Examples

Example 1

puppeteer.registerCustomQueryHandler('text', { … });
const aHandle = await page.$('text/…');

Parameters

name: string
  • The name that the custom query handler will be registered under.
queryHandler: CustomQueryHandler
  • The CustomQueryHandler | custom query handler to register.