UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

15 lines 403 B
/** * @license * Copyright 2023 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import { QueryHandler } from './QueryHandler.js'; /** * @internal */ export class TextQueryHandler extends QueryHandler { static querySelectorAll = (element, selector, { textQuerySelectorAll }) => { return textQuerySelectorAll(element, selector); }; } //# sourceMappingURL=TextQueryHandler.js.map