DIR: /var/www/node-app/node_modules/puppeteer-core/src/injected/ |
Current File : //var/www/node-app/node_modules/puppeteer-core/src/injected/CSSSelector.ts |
/** * @license * Copyright 2024 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ export const cssQuerySelector = ( root: Node, selector: string ): Element | null => { // @ts-expect-error assume element root return root.querySelector(selector); }; export const cssQuerySelectorAll = function ( root: Node, selector: string ): Iterable<Element> { // @ts-expect-error assume element root return root.querySelectorAll(selector); }; |