import { Puppeteer } from "https://deno.land/x/pptr@1.2.0/src/Puppeteer.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
Example 1
puppeteer.registerCustomQueryHandler('text', { … });
const aHandle = await page.$('text/…');
Parameters
queryHandler: CustomQueryHandler
- The CustomQueryHandler | custom query handler to register.