summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts69
1 files changed, 69 insertions, 0 deletions
diff --git a/remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts b/remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts
new file mode 100644
index 0000000000..41bb1a8408
--- /dev/null
+++ b/remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts
@@ -0,0 +1,69 @@
+/**
+ * Copyright 2023 Google Inc. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import type {CustomQueryHandler} from '../common/CustomQueryHandler.js';
+import type {Awaitable, AwaitableIterable} from '../common/types.js';
+
+export interface CustomQuerySelector {
+ querySelector(root: Node, selector: string): Awaitable<Node | null>;
+ querySelectorAll(root: Node, selector: string): AwaitableIterable<Node>;
+}
+
+/**
+ * This class mimics the injected {@link CustomQuerySelectorRegistry}.
+ */
+class CustomQuerySelectorRegistry {
+ #selectors = new Map<string, CustomQuerySelector>();
+
+ register(name: string, handler: CustomQueryHandler): void {
+ if (!handler.queryOne && handler.queryAll) {
+ const querySelectorAll = handler.queryAll;
+ handler.queryOne = (node, selector) => {
+ for (const result of querySelectorAll(node, selector)) {
+ return result;
+ }
+ return null;
+ };
+ } else if (handler.queryOne && !handler.queryAll) {
+ const querySelector = handler.queryOne;
+ handler.queryAll = (node, selector) => {
+ const result = querySelector(node, selector);
+ return result ? [result] : [];
+ };
+ } else if (!handler.queryOne || !handler.queryAll) {
+ throw new Error('At least one query method must be defined.');
+ }
+
+ this.#selectors.set(name, {
+ querySelector: handler.queryOne,
+ querySelectorAll: handler.queryAll!,
+ });
+ }
+
+ unregister(name: string): void {
+ this.#selectors.delete(name);
+ }
+
+ get(name: string): CustomQuerySelector | undefined {
+ return this.#selectors.get(name);
+ }
+
+ clear() {
+ this.#selectors.clear();
+ }
+}
+
+export const customQuerySelectors = new CustomQuerySelectorRegistry();