UNPKG

puppeteer-core

Version:

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

12 lines 385 B
/** * @license * Copyright 2022 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ export const ariaQuerySelector = (root, selector) => { return window.__ariaQuerySelector(root, selector); }; export const ariaQuerySelectorAll = async function* (root, selector) { yield* await window.__ariaQuerySelectorAll(root, selector); }; //# sourceMappingURL=ARIAQuerySelector.js.map