/** * Copyright (c) Microsoft Corporation. * * 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 * as dom from './dom'; import * as frames from './frames'; import * as js from './javascript'; import * as types from './types'; import { ParsedSelector, parseSelector, selectorsV2Enabled, selectorsV2EngineNames } from './common/selectorParser'; export type SelectorInfo = { parsed: ParsedSelector, world: types.World, selector: string, }; export class Selectors { readonly _builtinEngines: Set; readonly _engines: Map; readonly _engineNames: Set; constructor() { // Note: keep in sync with SelectorEvaluator class. this._builtinEngines = new Set([ 'css', 'css:light', 'xpath', 'xpath:light', 'text', 'text:light', 'id', 'id:light', 'data-testid', 'data-testid:light', 'data-test-id', 'data-test-id:light', 'data-test', 'data-test:light', ]); if (selectorsV2Enabled()) { for (const name of selectorsV2EngineNames()) this._builtinEngines.add(name); } this._engines = new Map(); this._engineNames = new Set(this._builtinEngines); } async register(name: string, source: string, contentScript: boolean = false): Promise { if (!name.match(/^[a-zA-Z_0-9-]+$/)) throw new Error('Selector engine name may only contain [a-zA-Z0-9_] characters'); // Note: we keep 'zs' for future use. if (this._builtinEngines.has(name) || name === 'zs' || name === 'zs:light') throw new Error(`"${name}" is a predefined selector engine`); if (this._engines.has(name)) throw new Error(`"${name}" selector engine has been already registered`); this._engines.set(name, { source, contentScript }); this._engineNames.add(name); } async _query(frame: frames.Frame, selector: string, scope?: dom.ElementHandle): Promise | null> { const info = this._parseSelector(selector); const context = await frame._context(info.world); const injectedScript = await context.injectedScript(); const handle = await injectedScript.evaluateHandle((injected, { parsed, scope }) => { return injected.querySelector(parsed, scope || document); }, { parsed: info.parsed, scope }); const elementHandle = handle.asElement() as dom.ElementHandle | null; if (!elementHandle) { handle.dispose(); return null; } const mainContext = await frame._mainContext(); return this._adoptIfNeeded(elementHandle, mainContext); } async _queryArray(frame: frames.Frame, selector: string, scope?: dom.ElementHandle): Promise> { const info = this._parseSelector(selector); const context = await frame._mainContext(); const injectedScript = await context.injectedScript(); const arrayHandle = await injectedScript.evaluateHandle((injected, { parsed, scope }) => { return injected.querySelectorAll(parsed, scope || document); }, { parsed: info.parsed, scope }); return arrayHandle; } async _queryAll(frame: frames.Frame, selector: string, scope?: dom.ElementHandle, adoptToMain?: boolean): Promise[]> { const info = this._parseSelector(selector); const context = await frame._context(info.world); const injectedScript = await context.injectedScript(); const arrayHandle = await injectedScript.evaluateHandle((injected, { parsed, scope }) => { return injected.querySelectorAll(parsed, scope || document); }, { parsed: info.parsed, scope }); const properties = await arrayHandle.getProperties(); arrayHandle.dispose(); // Note: adopting elements one by one may be slow. If we encounter the issue here, // we might introduce 'useMainContext' option or similar to speed things up. const targetContext = adoptToMain ? await frame._mainContext() : context; const result: Promise>[] = []; for (const property of properties.values()) { const elementHandle = property.asElement() as dom.ElementHandle; if (elementHandle) result.push(this._adoptIfNeeded(elementHandle, targetContext)); else property.dispose(); } return Promise.all(result); } private async _adoptIfNeeded(handle: dom.ElementHandle, context: dom.FrameExecutionContext): Promise> { if (handle._context === context) return handle; const adopted = handle._page._delegate.adoptElementHandle(handle, context); handle.dispose(); return adopted; } _parseSelector(selector: string): SelectorInfo { const parsed = parseSelector(selector, this._engineNames); const needsMainWorld = parsed.names.some(name => { const custom = this._engines.get(name); return custom ? !custom.contentScript : false; }); return { parsed, selector, world: needsMainWorld ? 'main' : 'utility', }; } } export const serverSelectors = new Selectors();