Skip to main content
Version: 18.0.2

registerCustomQueryHandler() function

Registers a custom query handler.

Signature:

export declare function registerCustomQueryHandler(
name: string,
handler: CustomQueryHandler
): void;

Parameters

ParameterTypeDescription
namestringThe name that the custom query handler will be registered under.
handlerCustomQueryHandler

Returns:

void

Remarks

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.

Example

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